/* =============================================================================
   Newfort Prohat Consulting LLP — global styles
   Customize: --color-* tokens, font families in :root, hero/stock image URLs in HTML
   ============================================================================= */

:root {
  --color-bg: #f0f4fb;
  --color-bg-deep: #e2eaf8;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-solid: #ffffff;
  --color-text: #1a2d4a;
  --color-text-muted: #5a6f8c;
  /* Pro Hats mark / brand navy — harmonises with logo artwork */
  --color-logo-navy: #1a2b56;
  --color-accent: #1e6bb8;
  --color-accent-soft: #4a9fd4;
  --color-glow: rgba(30, 107, 184, 0.35);
  --color-border: rgba(26, 45, 74, 0.08);
  --shadow-sm: 0 4px 20px rgba(26, 45, 74, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 45, 74, 0.1);
  --shadow-glow: 0 0 0 1px rgba(74, 159, 212, 0.2), 0 20px 50px rgba(30, 107, 184, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Inter", "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(165deg, var(--color-bg) 0%, #dfe9f7 45%, #e8f0fc 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* --- Background parallax orbs --- */
.bg-parallax {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-parallax__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
  animation: orb-drift 22s ease-in-out infinite;
}

.bg-parallax__orb--1 {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: radial-gradient(circle, rgba(74, 159, 212, 0.5) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.bg-parallax__orb--2 {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  background: radial-gradient(circle, rgba(30, 107, 184, 0.35) 0%, transparent 70%);
  bottom: 10%;
  right: -8%;
  animation-delay: -7s;
  animation-duration: 26s;
}

.bg-parallax__orb--3 {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 65%);
  top: 40%;
  left: 35%;
  animation-delay: -12s;
  animation-duration: 20s;
  opacity: 0.4;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 6%) scale(1.05);
  }
  66% {
    transform: translate(-3%, -4%) scale(0.98);
  }
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  max-width: min(100%, 420px);
  line-height: 1.2;
}

/* “Embedded” brand mark — reads like UI chrome, not a pasted bitmap */
.logo__frame {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.55rem;
  border-radius: 14px;
  background: linear-gradient(
    155deg,
    rgba(26, 43, 86, 0.07) 0%,
    rgba(255, 255, 255, 0.65) 38%,
    rgba(30, 107, 184, 0.06) 100%
  );
  border: 1px solid rgba(26, 43, 86, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(26, 45, 74, 0.06);
}

.logo__mark {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(148px, 38vw);
  object-fit: contain;
  object-position: left center;
  opacity: 1;
}

.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  min-width: 0;
}

.logo__company {
  color: var(--color-logo-navy);
  font-size: 1.02em;
}

.logo__suffix {
  font-weight: 600;
  font-size: 0.72em;
  color: var(--color-text-muted);
}

.logo:hover .logo__frame {
  border-color: rgba(30, 107, 184, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 14px rgba(30, 107, 184, 0.12);
}

.logo:hover .logo__company {
  color: var(--color-accent);
}

@media (max-width: 520px) {
  .logo {
    gap: 0.45rem;
    max-width: min(100%, 280px);
  }

  .logo__frame {
    padding: 0.22rem 0.4rem;
    border-radius: 12px;
  }

  .logo__mark {
    height: 34px;
    max-width: min(120px, 34vw);
  }

  .logo__company {
    font-size: 0.92em;
  }

  .logo__suffix {
    font-size: 0.68em;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

@media (min-width: 1100px) {
  .nav__link {
    padding: 0.5rem 0.65rem;
    font-size: 0.9rem;
  }
}

.nav__link:hover {
  color: var(--color-accent);
  background: rgba(30, 107, 184, 0.06);
}

.nav__link--active {
  color: var(--color-accent);
  background: rgba(30, 107, 184, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    text-align: center;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: min(85vh, 720px);
}

.hero--rich {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg-deep);
}

.hero__photo img,
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.page-home .hero--impact .hero__photo {
  aspect-ratio: 16 / 10;
  max-height: min(58vh, 540px);
}

.page-home .hero--impact .hero__img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}

.hero__market {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin: 0 0 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 107, 184, 0.22);
  max-width: min(100%, 38rem);
  line-height: 1.45;
  box-shadow: 0 6px 24px rgba(26, 45, 74, 0.07);
}

.hero__market strong {
  color: var(--color-accent);
}

.page-home .hero--impact .hero__photo-shade {
  background: linear-gradient(
    118deg,
    rgba(8, 24, 42, 0.55) 0%,
    rgba(26, 45, 74, 0.2) 38%,
    rgba(30, 107, 184, 0.12) 62%,
    transparent 78%
  );
}

.hero__photo-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
  background: conic-gradient(
    from 210deg at 50% 50%,
    rgba(74, 159, 212, 0.45),
    rgba(255, 255, 255, 0.12),
    rgba(30, 107, 184, 0.35),
    rgba(74, 159, 212, 0.45)
  );
  opacity: 0.55;
  mix-blend-mode: soft-light;
  animation: hero-glow-drift 12s ease-in-out infinite;
}

@keyframes hero-glow-drift {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: rotate(180deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo-glow {
    animation: none;
    opacity: 0.4;
  }
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 4;
}

.hero__photo-shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(26, 45, 74, 0.22) 0%,
    rgba(30, 107, 184, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.page-home .hero--premium .hero__photo {
  box-shadow:
    0 4px 6px rgba(26, 45, 74, 0.08),
    0 28px 56px rgba(30, 107, 184, 0.28),
    0 0 80px rgba(74, 159, 212, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.page-home .hero--premium .hero__content {
  padding-bottom: 0.5rem;
}

.page-home .hero--graphic .hero__title {
  font-size: clamp(2.15rem, 5.2vw, 3.55rem);
  line-height: 1.05;
}

/* Graphic hero (no photograph) — glass UI + motion */
.hero--graphic .hero__visual--graphic {
  min-height: min(420px, 52vh);
}

.hero__scene {
  position: relative;
  width: 100%;
  min-height: min(400px, 50vh);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #0d1f33 0%, #1a3d66 42%, #1e4d7b 100%);
  box-shadow:
    0 4px 6px rgba(8, 24, 42, 0.15),
    0 28px 56px rgba(30, 107, 184, 0.35),
    0 0 100px rgba(74, 159, 212, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero__aurora {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 200deg at 50% 50%, rgba(74, 159, 212, 0.35), transparent 40%, rgba(30, 107, 184, 0.25), transparent 75%);
  animation: hero-aurora-spin 28s linear infinite;
  opacity: 0.85;
}

@keyframes hero-aurora-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__aurora {
    animation: none;
  }
}

.hero__grid-fine {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 10%, transparent 72%);
  opacity: 0.9;
  animation: mesh-shift 22s linear infinite;
}

.hero__scene-hint {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

/* Pointer parallax layer: network + glass cards move together */
.hero__scene-track,
.split-scene__track {
  --px: 0;
  --py: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translate3d(calc(var(--px) * 22px), calc(var(--py) * 14px), 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero__network,
.split-scene__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.88;
}

.hero__network-path,
.split-scene__path {
  stroke-dasharray: 14 10;
  stroke-dashoffset: 0;
  animation: hero-network-flow 22s linear infinite;
}

.hero__network-path--delay,
.split-scene__path--delay {
  animation-delay: -11s;
}

@keyframes hero-network-flow {
  to {
    stroke-dashoffset: -240;
  }
}

.hero__network-pulse {
  animation: hero-node-pulse 2.8s ease-in-out infinite;
}

.hero__network-pulse--delay {
  animation-delay: -0.9s;
}

.hero__network-pulse--delay2 {
  animation-delay: -1.8s;
}

@keyframes hero-node-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.hero__glass-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 10% 7% 12%;
  flex-wrap: wrap;
  z-index: 2;
}

.hero__glass {
  width: min(40%, 138px);
  min-height: 0;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  perspective: 520px;
  transition: transform 0.35s var(--transition), filter 0.35s var(--transition);
}

.hero__glass-inner {
  padding: 0.75rem 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  animation: hero-glass-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero__glass:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 16px 36px rgba(74, 159, 212, 0.45));
  z-index: 4;
}

.hero__glass:hover .hero__glass-inner {
  border-color: rgba(120, 200, 255, 0.45);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(120, 200, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero__glass--a .hero__glass-inner {
  animation-delay: 0s;
}

.hero__glass--b .hero__glass-inner {
  animation-delay: -2s;
  transform: translateY(6px);
}

.hero__glass--b {
  margin-top: 0.35rem;
}

.hero__glass--c .hero__glass-inner {
  animation-delay: -4s;
}

.hero__glass--c {
  width: min(36%, 128px);
}

@keyframes hero-glass-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero__glass--b .hero__glass-inner {
  animation-name: hero-glass-float-b;
}

@keyframes hero-glass-float-b {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero__glass-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero__glass-icon {
  width: 100%;
  max-width: 72px;
  margin: 0.1rem 0;
}

.hero__glass-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero__glass-caption {
  font-size: 0.58rem;
  line-height: 1.35;
  color: rgba(200, 230, 255, 0.78);
  letter-spacing: 0.04em;
  max-width: 11em;
}

.hero__glass-bar {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(74, 159, 212, 0.95), rgba(255, 255, 255, 0.45));
  animation: hero-bar-pulse 3s ease-in-out infinite;
}

.hero__glass-bar--short {
  width: 60%;
  opacity: 0.8;
}

@keyframes hero-bar-pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

.hero__glass-ring {
  width: 40px;
  height: 40px;
  margin: 0.1rem auto 0;
  border-radius: 50%;
  border: 3px solid rgba(74, 159, 212, 0.75);
  border-top-color: rgba(255, 255, 255, 0.55);
  animation: ring-spin 12s linear infinite;
}

.hero__glass-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.hero__glass-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: node-float 4s ease-in-out infinite;
}

.hero__glass-dots span:nth-child(2) {
  animation-delay: -1s;
  opacity: 0.75;
}

.hero__glass-dots span:nth-child(3) {
  animation-delay: -2s;
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scene-track,
  .split-scene__track {
    transform: none !important;
    transition: none;
  }

  .hero__network-path,
  .split-scene__path {
    animation: none;
  }

  .hero__network-pulse,
  .split-scene__pulse {
    animation: none;
  }
}

.hero__orbit--scene {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: min(48%, 200px);
  height: min(48%, 200px);
  z-index: 1;
  opacity: 0.85;
  filter: drop-shadow(0 0 20px rgba(74, 159, 212, 0.5));
}

.hero__mesh--scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 20%, transparent 70%);
}

.split--graphic .split__media--scene {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.split-scene {
  position: relative;
  min-height: 280px;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #122a44 0%, #1e5080 50%, #153a5c 100%);
  box-shadow:
    0 20px 50px rgba(30, 107, 184, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.split-scene--workflow {
  overflow: hidden;
  filter: drop-shadow(0 24px 48px rgba(15, 60, 110, 0.35));
}

.split-scene__grid-fine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    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: 28px 28px;
  mask-image: radial-gradient(ellipse 88% 88% at 50% 48%, black 12%, transparent 70%);
  opacity: 0.85;
  animation: mesh-shift 24s linear infinite;
  pointer-events: none;
}

.split-scene__hint {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0.3rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.split-scene__cards {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 12% 6% 14%;
  flex-wrap: wrap;
  z-index: 2;
}

.split-glass {
  width: min(38%, 118px);
  perspective: 480px;
  transition: transform 0.32s var(--transition), filter 0.32s var(--transition);
}

.split-glass--b {
  margin-top: 0.4rem;
}

.split-glass--c {
  width: min(34%, 108px);
}

.split-glass__inner {
  padding: 0.55rem 0.5rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  animation: hero-glass-float 6.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

.split-glass--a .split-glass__inner {
  animation-delay: 0s;
}

.split-glass--b .split-glass__inner {
  animation-delay: -2.1s;
  animation-name: hero-glass-float-b;
}

.split-glass--c .split-glass__inner {
  animation-delay: -4.2s;
}

.split-glass:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 12px 28px rgba(74, 159, 212, 0.4));
  z-index: 4;
}

.split-glass:hover .split-glass__inner {
  border-color: rgba(120, 200, 255, 0.42);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(120, 200, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.split-glass__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.split-glass__icon {
  width: 100%;
  max-width: 56px;
}

.split-glass__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.split-glass__cap {
  font-size: 0.52rem;
  line-height: 1.3;
  color: rgba(200, 230, 255, 0.72);
  letter-spacing: 0.03em;
  max-width: 12em;
}

.split-scene__pulse {
  animation: hero-node-pulse 2.8s ease-in-out infinite;
}

.split-scene__pulse--delay {
  animation-delay: -0.9s;
}

.split-scene__pulse--delay2 {
  animation-delay: -1.8s;
}

.split-scene__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(74, 159, 212, 0.35), transparent 55%);
  animation: hero-aurora-spin 40s linear infinite;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .split-scene__glow {
    animation: none;
  }

  .hero__glass-inner,
  .split-glass__inner {
    animation: none !important;
  }

  .hero__grid-fine,
  .split-scene__grid-fine {
    animation: none;
  }
}

.split-scene__panel {
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.split-scene__panel--1 {
  width: 45%;
  height: 38%;
  top: 18%;
  left: 12%;
  animation: hero-glass-float 7s ease-in-out infinite;
}

.split-scene__panel--2 {
  width: 38%;
  height: 32%;
  bottom: 20%;
  right: 14%;
  animation: hero-glass-float 5.5s ease-in-out infinite reverse;
}

.split-scene__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  border: 2px dashed rgba(74, 159, 212, 0.45);
  animation: ring-spin 24s linear infinite;
}

.about-banner--fx {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, #e8f2fc 0%, #dceaf7 45%, #f5f9ff 100%);
  box-shadow: var(--shadow-md);
}

.about-banner__art {
  display: block;
  line-height: 0;
}

.about-banner__art svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Solid title colour — gradient clip + color:transparent caused invisible text in some browsers/GPU paths */
.page-home .hero--premium .hero__title {
  color: var(--color-text);
}

.hero__graphics {
  position: relative;
  height: min(280px, 32vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__graphics--overlay {
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 7% 5% 9% 5%;
  pointer-events: none;
}

.hero__graphics--overlay .hero__orbit {
  width: min(58%, 240px);
  max-width: 240px;
  filter: drop-shadow(0 0 24px rgba(74, 159, 212, 0.45));
}

.hero__mesh--overlay {
  inset: -10%;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 75% 75% at 72% 58%, rgba(0, 0, 0, 0.95) 12%, transparent 72%);
}

.hero__orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(74, 159, 212, 0.35);
  animation: ring-spin 28s linear infinite;
}

.hero__ring--outer {
  width: 100%;
  height: 100%;
  border-style: dashed;
  opacity: 0.85;
}

.hero__ring--inner {
  width: 72%;
  height: 72%;
  border-color: rgba(30, 107, 184, 0.25);
  animation-direction: reverse;
  animation-duration: 20s;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero__node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
  box-shadow: 0 0 20px var(--color-glow);
  animation: node-float 5s ease-in-out infinite;
}

.hero__node--1 {
  top: 8%;
  right: 22%;
  animation-delay: 0s;
}

.hero__node--2 {
  bottom: 18%;
  left: 12%;
  animation-delay: -1.5s;
  width: 10px;
  height: 10px;
}

.hero__node--3 {
  top: 42%;
  left: 4%;
  animation-delay: -3s;
  width: 12px;
  height: 12px;
}

@keyframes node-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, -10px);
  }
}

.hero__pulse {
  position: absolute;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.2) 0%, transparent 70%);
  animation: pulse-scale 4s ease-in-out infinite;
}

@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
}

.hero__mesh {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(30, 107, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 107, 184, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  animation: mesh-shift 15s linear infinite;
}

@keyframes mesh-shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-28px, -28px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--color-text);
}

.hero__tagline {
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin: 0 0 1.1rem;
  max-width: 40ch;
}

.hero__activity {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(30, 107, 184, 0.08);
  border-left: 3px solid var(--color-accent-soft);
  max-width: 52ch;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent) 0%, #155a9e 100%);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(30, 107, 184, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--ghost {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(30, 107, 184, 0.25);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--color-accent-soft);
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    min-height: auto;
  }

  .hero--rich {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__graphics--overlay .hero__orbit {
    width: min(48%, 200px);
  }

  .page-home .hero--graphic .hero__scene {
    max-height: min(52vh, 440px);
    min-height: min(320px, 48vh);
  }
}

/* --- Content bands & supporting sections --- */
.band {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.band--cta {
  background: linear-gradient(135deg, rgba(30, 107, 184, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.band__inner {
  max-width: 900px;
  margin: 0 auto;
}

.band__inner--wide {
  max-width: 960px;
}

.band--alt {
  background: rgba(248, 251, 255, 0.82);
}

.band__text a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.band__text a:hover {
  text-decoration: underline;
}

.band--india {
  background: linear-gradient(135deg, rgba(30, 107, 184, 0.09) 0%, rgba(255, 255, 255, 0.75) 55%, rgba(240, 248, 255, 0.9) 100%);
  border-left: 4px solid var(--color-accent-soft);
}

.band__list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.band__list li {
  margin-bottom: 0.65rem;
}

.band__list li:last-child {
  margin-bottom: 0;
}

.page-home {
  background: linear-gradient(180deg, #e8f1fc 0%, var(--color-bg) 28%, var(--color-bg) 100%);
}

.band__inner--cta {
  text-align: center;
  max-width: 640px;
}

.band__inner--cta .band__title {
  margin-bottom: 1rem;
}

.band__inner--cta p {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.band__text p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.band__text p:last-child {
  margin-bottom: 0;
}

.stats {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stats__inner--wide {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1150px;
}

.stats__item {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-solid);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.categories {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card__icon {
  width: 48px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  margin-bottom: 1rem;
}

.category-card__icon--b {
  background: linear-gradient(90deg, var(--color-accent-soft), #7eb8e0);
}

.category-card__icon--c {
  background: linear-gradient(90deg, #155a9e, var(--color-accent));
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.category-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.split {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.split__content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.split__list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.split__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.split--img-right .split__media {
  order: 1;
}

.split--img-right .split__content {
  order: 0;
}

@media (max-width: 900px) {
  .stats__inner {
    grid-template-columns: 1fr;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split--img-right .split__media {
    order: -1;
  }
}

/* --- Showcase grid --- */
.showcase {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.section-head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-head__text {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head code {
  font-size: 0.9em;
  background: rgba(30, 107, 184, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase__grid--six {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Lifecycle strip (home) */
.services-strip {
  position: relative;
  z-index: 1;
  padding: 3.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(240, 247, 255, 0.65) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-pill {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-pill:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 159, 212, 0.28);
}

.service-pill__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  color: var(--color-accent);
}

.service-pill__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-pill__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.service-pill__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .services-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .services-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* Trust / compliance teaser */
.trust-strip {
  position: relative;
  z-index: 1;
  padding: 2.75rem 1.5rem;
}

.trust-strip__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.trust-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.trust-strip__lead {
  margin: 0 0 1rem;
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.trust-strip__list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
}

.trust-strip__list li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-strip__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-soft);
}

.trust-strip .btn {
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .showcase__grid {
    grid-template-columns: 1fr;
  }
}

.equipment-card {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(74, 159, 212, 0.35);
}

.equipment-card--showcase {
  display: flex;
  flex-direction: column;
}

.equipment-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.equipment-card--showcase:hover {
  transform: translateY(-10px);
}

.equipment-card--showcase:focus-within {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
}

.equipment-card__media {
  aspect-ratio: 400 / 280;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f1fb 0%, #dce8f5 100%);
}

.equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
}

.equipment-card__media--svg img {
  object-fit: contain;
  padding: 1rem 1.35rem;
  background: linear-gradient(160deg, #e8f0fc 0%, #dce8f5 100%);
}

.equipment-card:hover .equipment-card__media img {
  transform: scale(1.04);
}

.equipment-card--showcase:hover .equipment-card__media--svg img {
  transform: scale(1.02);
}

.equipment-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.equipment-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.equipment-card__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.equipment-card--showcase .equipment-card__meta {
  line-height: 1.5;
}

/* Scroll reveal — content stays visible without JS; motion is optional enhancement */
[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.65s var(--transition);
}

[data-reveal].is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transform: none;
    transition: none;
  }
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.5);
  margin-top: auto;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: min(100%, 420px);
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.site-footer__activity {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: flex-end;
  max-width: min(100%, 640px);
}

.site-footer__link {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
}

.site-footer__link:hover {
  text-decoration: underline;
}

/* --- About page --- */
.page-about .about-floats {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-shape {
  position: absolute;
  border-radius: var(--radius-md);
  opacity: 0.45;
  animation: shape-float 12s ease-in-out infinite;
}

.float-shape--1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 8%;
  background: linear-gradient(135deg, rgba(74, 159, 212, 0.4), rgba(30, 107, 184, 0.15));
  transform: rotate(12deg);
}

.float-shape--2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 6%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 232, 245, 0.6));
  border: 1px solid rgba(30, 107, 184, 0.12);
  animation-delay: -3s;
  border-radius: 50%;
}

.float-shape--3 {
  width: 200px;
  height: 40px;
  top: 45%;
  left: -4%;
  background: linear-gradient(90deg, transparent, rgba(30, 107, 184, 0.12), transparent);
  animation-delay: -6s;
}

.float-shape--4 {
  width: 60px;
  height: 60px;
  bottom: 12%;
  right: 15%;
  border: 2px solid rgba(74, 159, 212, 0.35);
  background: transparent;
  animation-delay: -9s;
}

@keyframes shape-float {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

.page-about .float-shape--2 {
  animation-name: shape-float-circle;
}

@keyframes shape-float-circle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.about-main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.about-main--wide {
  max-width: 900px;
}

.about-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.about-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.about-hero__subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.about-banner {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.about-banner img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about-block {
  margin-bottom: 2.75rem;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-list li {
  margin-bottom: 0.65rem;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-content__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-content__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.about-content__text {
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.about-content__text:last-child {
  margin-bottom: 0;
}

/* --- Contact --- */
.contact-layout {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-layout__intro .contact-intro__title {
  text-align: left;
}

.contact-layout__intro .contact-intro__text {
  text-align: left;
}

.contact-layout--b2b {
  max-width: 1120px;
}

.contact-layout--email-only {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.contact-card__cta {
  margin: 1rem 0 0;
}

.contact-intro__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.contact-intro__lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text);
  font-weight: 500;
}

.page-contact--b2b .contact-intro__title {
  margin-bottom: 0.75rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 0;
}

.contact-card--email {
  grid-column: 1 / -1;
  border-left: 3px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(30, 107, 184, 0.06) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.contact-banner {
  margin: 1.75rem 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-banner--fx {
  background: linear-gradient(165deg, #f0f7ff 0%, #e8f2fc 100%);
}

.contact-banner svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.contact-panel__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-panel__hint a {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 700px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-card--email {
    grid-column: auto;
  }
}

.contact-main {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.contact-intro {
  margin-bottom: 1.5rem;
}

.contact-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.contact-intro__text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.contact-card {
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-card:last-of-type {
  margin-bottom: 0;
}

.contact-card--info {
  border-left: 3px solid var(--color-accent-soft);
  background: rgba(255, 255, 255, 0.85);
}

.contact-card__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.contact-card__strong {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-card__muted {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.contact-card__muted a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-card__muted a:hover {
  text-decoration: underline;
}

.contact-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-aside-img {
  margin: 1.5rem 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-aside-img img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-form .form-row {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-solid);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-soft);
  box-shadow: 0 0 0 3px rgba(74, 159, 212, 0.2);
}

.form-input--textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  display: block;
  min-height: 1.25rem;
  font-size: 0.8125rem;
  color: #c53030;
  margin-top: 0.25rem;
}

.form-actions {
  margin-top: 1.5rem;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  min-height: 1.5rem;
  color: var(--color-text-muted);
}

.form-status.is-success {
  color: #2a7a4b;
}

.form-status.is-error {
  color: #c53030;
}

/* Sticky footer behavior */
body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* --- Expanded site: sectors, process, prose pages, FAQ --- */
.page-prose {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-prose__hero {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.page-prose__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.page-prose__lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.page-prose .about-content__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-layout__intro .contact-intro__text + .contact-intro__text {
  margin-top: 1rem;
}

.prose-block {
  margin-bottom: 2.25rem;
}

.prose-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.prose-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.prose-block p,
.prose-block li {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 0.85rem;
}

.prose-block ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.info-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-solid);
  box-shadow: var(--shadow-sm);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th,
.info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.info-table th {
  font-weight: 600;
  color: var(--color-text);
  background: rgba(30, 107, 184, 0.06);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

@media (max-width: 900px) {
  .sector-grid {
    grid-template-columns: 1fr;
  }
}

.sector-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.sector-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.sector-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 251, 0.9) 100%);
  border: 1px solid var(--color-border);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.process-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.snapshot-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .snapshot-grid {
    grid-template-columns: 1fr;
  }
}

.snapshot-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--color-accent-soft);
}

.snapshot-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.snapshot-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq-list details {
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-solid);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--color-border);
  background: rgba(30, 107, 184, 0.04);
}

.faq-list .faq-a {
  padding: 0 1.15rem 1.1rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --- Who we are (team) --- */
.page-team {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-team__hero {
  margin-bottom: 2rem;
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface-solid);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.team-card__role {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.45;
}

.team-card__creds {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.team-card__bio p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.team-card__bio p + p {
  margin-top: 0.75rem;
}

.team-card__expertise {
  margin: 1rem 0 0;
}

.team-card__expertise-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.team-card__expertise ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.team-card__expertise li {
  margin-bottom: 0.35rem;
}
