/* ======================================================
   The Cyber Assurance — Global Styles
   Background: white-first / page sections light
   Navbar + Hero: dark cinematic
   ====================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* === Brand palette: Diamond-Cyan (white + cyan + navy text) === */
  --bg-base:    #ffffff;
  --bg-surface: #f4f8fd;
  /* Hero is dramatic — deep navy, not emerald-green */
  --bg-hero:    #071A5C;
  /* Footer / dark anchor */
  --bg-dark:    #0A1230;

  --paper:   #ffffff;
  --paper-2: #f4f8fd;
  --paper-3: #eaf1fa;
  --ice:     #f4f8fd;

  --text-dark:  #0A1230;
  --ink:        #0A1230;
  --text-mute:  #5b6478;
  --text-faint: #8993a8;

  --border-subtle: #e2eaf5;

  /* Cyan replaces emerald as the primary accent */
  --accent:        #21C4E6;
  --accent-hover:  #15A5C7;
  --accent-tint:   #e6f8fc;
  --cyan:          #21C4E6;
  --cyan-soft:     #A6E8F3;
  --cyan-tint:     #E6F8FC;

  /* Navy is for type only — headings, word-accents */
  --navy:        #0E2A8C;
  --navy-deep:   #071A5C;

  --status-success: #21C4E6;
  --status-warning: #B7791F;

  /* legacy aliases (kept so existing rules don't break) */
  --ink-900: var(--bg-hero);
  --ink-800: #0c1024;
  --ink-700: #131835;
  --ink-600: #1c2347;
  --accent-1: var(--accent);
  --accent-2: var(--accent-hover);
  --accent-glow: rgba(33, 196, 230, 0.45);
  --line:    rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --radius-pill: 999px;
  --radius-lg:   18px;
  --radius-md:   12px;

  --shadow-pill: 0 10px 40px rgba(7,9,26,0.25), 0 2px 6px rgba(7,9,26,0.18);
  --shadow-mega: 0 24px 80px rgba(10,15,40,0.18), 0 4px 16px rgba(10,15,40,0.08);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, 'Helvetica Neue', sans-serif;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================================================
   PAGE TRANSITIONS — JS-driven, opacity-only.

   We do NOT transform the body or any ancestor of fixed-positioned
   children. A transform on body would re-root the mobile menu drawer
   and cookie banner — breaking both. Opacity alone gives the premium
   cross-fade feel without breaking anything.
   ====================================================== */

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: tca-fade-in 380ms cubic-bezier(0.65, 0, 0.35, 1) both;
  }
  @keyframes tca-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  body.tca-leaving {
    animation: tca-fade-out 240ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
  @keyframes tca-fade-out {
    to { opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* ===== Cookie banner (GDPR) ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 960px;
  margin: 0 auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 480ms cubic-bezier(0.22, 1.2, 0.36, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.is-leaving {
  opacity: 0;
  transform: translateY(24px);
}
.cookie-banner-inner {
  background: rgba(7, 26, 92, 0.92);
  color: #ffffff;
  border: 1px solid rgba(33, 196, 230, 0.22);
  border-radius: 18px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 22px;
  align-items: center;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 24px 60px rgba(7, 9, 26, 0.34),
    0 2px 8px rgba(7, 9, 26, 0.20),
    0 0 0 1px rgba(33, 196, 230, 0.10) inset;
}
.cookie-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(33, 196, 230, 0.16);
  color: var(--cyan);
  border: 1px solid rgba(33, 196, 230, 0.30);
  flex-shrink: 0;
}
.cookie-banner-title {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.012em;
}
.cookie-banner-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 540px;
}
.cookie-banner-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.cookie-banner-text a:hover { color: var(--cyan-soft); }
.cookie-banner-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.003em;
  transition: background 200ms ease, color 200ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
}
.cookie-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.cookie-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 18px;
  background: var(--cyan);
  color: var(--ink);
}
.cookie-btn-primary:hover { transform: translateY(-1px); }
.cookie-btn-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-btn-primary:hover .cookie-btn-chip { transform: rotate(-45deg); }
.cookie-btn-primary:hover .cookie-btn-chip svg { transform: rotate(45deg); }
.cookie-btn-chip svg { transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1); }

@media (max-width: 700px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions { justify-content: flex-end; }
}

/* ===== Top fade / glass overlay on scroll — crossfades between themes ===== */
.top-fade {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 380ms ease;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.top-fade.is-active { opacity: 1; }

/* Two stacked gradients — crossfade via opacity for a smooth theme transition */
.top-fade::before,
.top-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 420ms ease;
}
.top-fade::before {
  background: linear-gradient(180deg,
    rgba(7, 18, 48, 0.45) 0%,
    rgba(7, 18, 48, 0.18) 55%,
    rgba(7, 18, 48, 0)    100%);
  opacity: 1;
}
.top-fade::after {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.20) 55%,
    rgba(255,255,255,0)    100%);
  opacity: 0;
}
body:has(.site-header.is-light) .top-fade::before { opacity: 0; }
body:has(.site-header.is-light) .top-fade::after  { opacity: 1; }

/* Hide native scrollbar (custom one replaces it) */
html { scrollbar-width: none; }
body::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* ===== Custom auto-hiding scrollbar ===== */
.scrollbar {
  position: fixed;
  top: 12px;
  right: 6px;
  bottom: 12px;
  width: 6px;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transform: translateX(4px);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scrollbar.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Subtle track that fades in on hover */
.scrollbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 36, 0.06);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 280ms ease;
}
.scrollbar:hover::before,
.scrollbar.is-dragging::before { opacity: 1; }

.scrollbar-thumb {
  position: absolute;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #21C4E6 0%, var(--accent) 50%, #0E2A8C 100%);
  border-radius: 999px;
  pointer-events: auto;
  cursor: grab;
  transition:
    width 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 280ms ease;
  min-height: 36px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    0 0 0 0 rgba(33, 196, 230, 0);
}
.scrollbar:hover .scrollbar-thumb {
  width: 6px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 0 16px 0 rgba(33, 196, 230, 0.45);
}
.scrollbar.is-dragging .scrollbar-thumb {
  width: 6px;
  background: linear-gradient(180deg, #0E2A8C 0%, #0E2A8C 100%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 20px 0 rgba(33, 196, 230, 0.55);
}
.scrollbar.is-dragging { cursor: grabbing; }


a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }

/* ======================================================
   NAVBAR
   ====================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 30px clamp(20px, 3.5vw, 52px) 0;
  pointer-events: none;
  /* NOTE: no `transform` or `will-change` here by default — those would
     create a containing block and confine the mobile drawer
     (position: fixed inside the header) to the navbar's box instead
     of the viewport. Transform is only applied when actually hiding. */
  opacity: 1;
  transition: transform 380ms cubic-bezier(0.65, 0, 0.35, 1), opacity 280ms ease;
}
.site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1480px;
  margin: 0 auto;
  pointer-events: auto;
}

/* Brand / logo */
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding-left: 4px;
  transition: color 320ms ease;
}
.brand-mark-img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  /* Default: over DARK sections — knock out the cyan colour, render as pure white */
  filter: brightness(0) invert(1);
  transition: filter 320ms ease;
}
@media (max-width: 540px) {
  .brand-mark-img { width: 44px; height: 44px; }
}
/* Over LIGHT sections — restore the original brand colours */
.site-header.is-light .brand-mark-img {
  filter: none;
}

/* Brand wordmark + gradient line + tagline — matches actual TCA logo */
.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 14px;
  line-height: 1;
  vertical-align: middle;
}
.brand-text {
  position: relative;
  top: 4px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #f3f5fb;
  line-height: 1;
  white-space: nowrap;
  transition: color 320ms ease;
  overflow: hidden;
  display: inline-block;
}
.brand-tagline {
  position: relative;
  align-self: stretch;
  text-align: right;
  margin-top: 5px;
  padding-top: 7px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(243, 245, 251, 0.7);
  white-space: nowrap;
  transition: color 320ms ease;
  text-transform: none;
}
.brand-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2856ff 0%, #38bdf8 50%, #34d399 100%);
  border-radius: 1px;
}
.site-header.is-light .brand-tagline {
  color: rgba(15, 20, 36, 0.65);
}
/* Entrance animation — wordmark slides + fades in from behind the logo on page load */
.brand .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 1px;
}
.brand .roll-inner {
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
  animation: brandReveal 900ms cubic-bezier(0.7, 0, 0.2, 1) both;
  animation-delay: 220ms;
}
.brand .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.brand:hover .roll-inner {
  transform: translateY(-100%);
}
@keyframes brandReveal {
  0% {
    opacity: 0;
    transform: translateX(-14px);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
/* Hide wordmark + tagline on small screens to keep navbar inset clean */
@media (max-width: 900px) {
  .brand-stack { display: none; }
}

/* Center pill — frosted glass (no color tint, picks up bg through blur) */
.nav-pill {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 7px 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 6px 22px rgba(0, 0, 0, 0.12);
  justify-self: center;
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}
.nav-list {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.nav-item .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f3f5fb;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: -0.005em;
  padding: 11px 18px 13px;
  border-radius: 12px;
  transition: color 320ms ease;
  cursor: pointer;
}

/* ===== Light navbar theme (over white sections) ===== */
.site-header.is-light .brand,
.site-header.is-light .brand-text {
  color: var(--text-dark);
}
.site-header.is-light .nav-pill {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 20, 36, 0.06);
  box-shadow: 0 4px 16px rgba(15, 20, 36, 0.05);
}
.site-header.is-light .nav-item .nav-link {
  color: var(--text-dark);
}
.site-header.is-light .nav-link::after {
  background: rgba(15, 20, 36, 0.55);
}
/* Swap logo gradient to dark in light theme via SVG color override */
.site-header.is-light .brand-mark svg path {
  fill: #0f1424;
}

/* Animated underline lives on the link itself so it stays put while text rolls */
.nav-link .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  /* small padding so descenders don't get clipped */
  padding-bottom: 1px;
}
.nav-link .roll-inner {
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
/* The "next" copy that rolls in from below */
.nav-link .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

.nav-link:hover .roll-inner,
.nav-item.is-open .nav-link .roll-inner {
  transform: translateY(-100%);
}

/* Fixed underline below the text, animates independently */
.nav-link::after {
  content: "";
  position: absolute;
  left: 22%; right: 22%;
  bottom: 4px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.7, 0, 0.2, 1);
}
.nav-link:hover::after,
.nav-item.is-open .nav-link::after {
  transform: scaleX(1);
}
.nav-link:not(:hover)::after {
  transform-origin: right center;
}

/* CTAs */
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 12px;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
  white-space: nowrap;
}
.btn-ghost {
  color: #ffffff;
  background: rgba(28, 32, 52, 0.85);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.btn-ghost:hover {
  background: rgba(40, 46, 72, 0.95);
}
.btn-primary {
  color: #0f1419;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 6px 6px 18px;
  border-radius: 14px;
  align-self: center;
  gap: 12px;
  transition: background 220ms ease, color 220ms ease, transform 180ms var(--ease-out);
}
.btn-primary:hover {
  background: #f0f1f3;
  transform: translateY(-1px);
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: background 220ms ease, color 220ms ease;
}

/* Light navbar theme (over white sections) → navy button + cyan chip */
.site-header.is-light .btn-primary {
  color: #ffffff;
  background: var(--navy);
}
.site-header.is-light .btn-primary:hover {
  background: #0A2274;
}
.site-header.is-light .btn-icon {
  background: var(--cyan);
  color: var(--ink);
}
.arrow-stack {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}
.arrow {
  position: absolute;
  inset: 0;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1), opacity 280ms ease;
}
.arrow-a { transform: translate(0, 0); }
.arrow-b { transform: translate(-130%, 130%); opacity: 0; }

.btn-primary:hover .arrow-a { transform: translate(130%, -130%); opacity: 0; }
.btn-primary:hover .arrow-b { transform: translate(0, 0); opacity: 1; }

/* Contact text roll on hover */
.btn-primary .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 1px;
}
.btn-primary .roll-inner {
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
.btn-primary .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.btn-primary:hover .roll-inner { transform: translateY(-100%); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); }

/* ======================================================
   MEGA MENU
   ====================================================== */

.mega-wrap {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px) scale(0.97);
  transform-origin: top center;
  width: min(1000px, calc(100vw - 80px));
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.22, 1.2, 0.36, 1);
  filter: drop-shadow(0 20px 40px rgba(15, 20, 36, 0.14));
}
.mega-wrap.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-panel {
  display: none;
  grid-template-columns: 240px 1fr;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 20, 36, 0.06);
  overflow: hidden;
  min-height: 320px;
  position: relative;
  z-index: 1;
}
.mega-panel.is-active { display: grid; }
.mega-panel.mega-panel-flat.is-active { display: block; }
.mega-flat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 16px;
}
.mega-flat-grid .mega-item { opacity: 1; transform: none; animation: none; }
.mega-item-exclusive .mega-item-title { color: var(--cyan); }

.mega-side {
  background: #f7f8fb;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(15, 20, 36, 0.06);
}
.mega-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
  opacity: 0;
  transform: translateX(-6px);
}
.mega-wrap.is-open .mega-cat {
  animation: mega-fade-x 360ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mega-wrap.is-open .mega-side .mega-cat:nth-child(1) { animation-delay: 60ms; }
.mega-wrap.is-open .mega-side .mega-cat:nth-child(2) { animation-delay: 110ms; }
.mega-wrap.is-open .mega-side .mega-cat:nth-child(3) { animation-delay: 160ms; }
.mega-wrap.is-open .mega-side .mega-cat:nth-child(4) { animation-delay: 210ms; }

@keyframes mega-fade-x {
  to { opacity: 1; transform: translateX(0); }
}
.mega-cat svg { opacity: 0; transform: translateX(-4px); transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out); }
.mega-cat:hover { background: rgba(15,20,36,0.04); }
.mega-cat.active {
  background: var(--navy);
  color: #fff;
}
.mega-cat.active svg { opacity: 1; transform: translateX(0); }

.mega-content {
  padding: 18px 20px;
  position: relative;
}
.mega-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.mega-grid.active { display: grid; }

.mega-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
  opacity: 0;
  transform: translateY(8px);
  position: relative;
}
.mega-item:hover {
  background: rgba(15,20,36,0.04);
}
.mega-wrap.is-open .mega-grid.active .mega-item {
  animation: mega-fade-y 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(1) { animation-delay: 90ms; }
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(2) { animation-delay: 130ms; }
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(3) { animation-delay: 170ms; }
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(4) { animation-delay: 210ms; }
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(5) { animation-delay: 250ms; }
.mega-wrap.is-open .mega-grid.active .mega-item:nth-child(6) { animation-delay: 290ms; }

@keyframes mega-fade-y {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle arrow that appears on hover, modern touch */
.mega-item::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  color: var(--text-mute);
  font-size: 14px;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mega-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.mega-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.mega-item-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-mute);
}

/* ======================================================
   HERO — dark left + angled accent right
   ====================================================== */

.hero {
  position: sticky;
  top: 12px;
  z-index: 0;
  margin: 12px 36px 36px;
  border-radius: 30px;
  min-height: calc(100vh - 24px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(33, 196, 230, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(33, 196, 230, 0.12) 0%, transparent 50%),
    var(--bg-hero);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 26, 92, 0.18);
}

/* Globe peeks up from the bottom of the hero (lower half clipped) */
/* Frame: half-height so the globe's bottom half is naturally clipped */
.hero-globe-frame {
  position: absolute;
  left: 50%;
  bottom: 0;                        /* flush with hero bottom — no gap */
  transform: translateX(-50%);
  width: min(1100px, 92vw);
  height: clamp(440px, 46vh, 560px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
/* Canvas top sits at frame top — the bottom of the canvas hangs below frame and is clipped */
.hero-globe {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  pointer-events: none;        /* no drag — auto-rotates only */
}

/* POI annotations projected from globe lat/lon each frame */
.globe-ann {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 18, 48, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(33, 196, 230, 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.95);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 8px 24px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate(-50%, calc(-50% - 10px));   /* small lift above the POI point */
  transition: opacity 420ms ease;
  will-change: opacity, left, top;
}

.ann-dot { display: none; }
.ann-msg {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 720px) {
  .globe-ann { display: none; }
}

/* Hero content layer — viewport-aware so content never overlaps the globe */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  /* top padding ≈ navbar gap; bottom padding reserves space for the globe peek */
  padding: clamp(110px, 14vh, 180px) 40px clamp(500px, 50vh, 640px);
  gap: clamp(4px, 0.8vh, 8px);
}
.hero-content .btn-hero {
  margin-top: -2px;
}

/* Wrapper so the arrow can sit just to the right of the CTA */
.cta-row {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Hand-drawn arrow pointing at the CTA */
.cta-arrow {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  width: 140px;
  height: auto;
  color: #21C4E6;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(calc(-50% + 8px)) scaleX(-1) rotate(3deg);
  transform-origin: center center;
}

@media (max-width: 720px) {
  .cta-arrow { display: none; }
}
.hero-headline {
  font-size: min(64px, 5vw, 7vh);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  max-width: 940px;
  text-wrap: balance;
}
.hero-headline-accent {
  color: #21C4E6;   /* mint emerald — matches the arrow */
}
.hero-sub {
  font-size: min(17px, 1.25vw, 2.2vh);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  width: 100%;
  max-width: 720px;
  margin: 14px 0 22px;
}

/* CTA in the hero — matches the navbar Contact Us button exactly */
.btn-hero-lg {
  padding: 6px 6px 6px 18px;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  border-radius: 14px;
}
.btn-hero-lg .btn-hero-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  transform: none;
}

/* Certifications strip */
.hero-certs {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cert-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.cert-label {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.cert-tick {
  color: var(--accent);
  margin-left: 2px;
}
.hero-tagline {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  margin-top: 6px;
}

/* Sprinto-style white pill CTA with emerald icon on the left */
.btn-hero {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 18px;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 24px rgba(7, 26, 92, 0.28),
    0 2px 6px rgba(7, 26, 92, 0.18);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms ease;
}
.btn-hero:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 32px rgba(7, 26, 92, 0.34),
    0 2px 8px rgba(7, 26, 92, 0.22);
}
.btn-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.btn-hero {
  position: relative;
}
.btn-hero .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 1px;
}
.btn-hero .roll-inner {
  display: inline-block;
  font-weight: 700;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
}
.btn-hero .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.btn-hero:hover .roll-inner { transform: translateY(-100%); }

/* Brighter version of the pattern, revealed only near the cursor */
.hero-pattern-bright {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><g fill='none' stroke='%2321C4E6' stroke-width='1.2' opacity='1'><circle cx='14' cy='14' r='2.3'/><path d='M40 11 L40 17 M37 14 L43 14'/><path d='M12 39 L12 45 M9 42 L15 42'/><circle cx='42' cy='42' r='2.3'/></g></svg>");
  background-size: 56px 56px;
  opacity: 0;
  transition: opacity 220ms ease;
  clip-path: circle(180px at 50% 55%);
  -webkit-clip-path: circle(180px at 50% 55%);
  will-change: clip-path, opacity;
}
.hero-pattern-bright.is-active { opacity: 0.95; }

/* Mixed circle + plus emerald pattern over the hero gradient */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><g fill='none' stroke='%237DDDF0' stroke-width='0.85' opacity='0.7'><circle cx='14' cy='14' r='1.7'/><path d='M40 12 L40 16 M38 14 L42 14'/><path d='M12 40 L12 44 M10 42 L14 42'/><circle cx='42' cy='42' r='1.7'/></g></svg>");
  background-size: 56px 56px;
  opacity: 0.55;
  /* fade out at the centre so it doesn't fight the headline */
  -webkit-mask-image: radial-gradient(ellipse at 50% 38%, transparent 0%, transparent 25%, black 75%);
  mask-image: radial-gradient(ellipse at 50% 38%, transparent 0%, transparent 25%, black 75%);
}
/* Radiating pulses — each ring expands AND reveals particles inside it */
.hero-pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><g fill='none' stroke='%2321C4E6' stroke-width='0.9' opacity='0.6'><circle cx='14' cy='14' r='1.6'/><path d='M40 12 L40 16 M38 14 L42 14'/><path d='M12 40 L12 44 M10 42 L14 42'/><circle cx='42' cy='42' r='1.6'/></g></svg>");
  background-size: 56px 56px;
  clip-path: circle(15px at 50% 55%);
  -webkit-clip-path: circle(15px at 50% 55%);
  opacity: 0;
  animation: pulse-scan 18s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes pulse-scan {
  0%   { clip-path: circle(15px at 50% 55%); -webkit-clip-path: circle(15px at 50% 55%); opacity: 0; }
  6%   { opacity: 0.35; }
  100% { clip-path: circle(1400px at 50% 55%); -webkit-clip-path: circle(1400px at 50% 55%); opacity: 0; }
}

/* Sections after hero rise up over it */
.placeholder, .placeholder-footer {
  position: relative;
  z-index: 1;
}

/* Left side */
.hero-left {
  position: relative;
  z-index: 2;
  padding: 160px 50px 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #c8d0e2;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  width: max-content;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6c9aff;
  box-shadow: 0 0 10px rgba(108, 154, 255, 0.7);
}

.hero-title {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px;
}
.hero-title-accent {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: #e8edfb;
}
.hero-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); }

/* Trust strip */
.hero-trust { margin-top: 64px; }
.trust-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f7a96;
  margin-bottom: 14px;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.trust-logo {
  font-size: 13px;
  font-weight: 600;
  color: #b9c1d6;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.trust-logo:hover { opacity: 1; }

/* Right side */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a3470 0%, #3a4ba8 35%, #5a6cd6 70%, #7d8de8 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image {
  position: absolute;
  top: 14%;
  right: 7%;
  bottom: 14%;
  left: 22%;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2240 0%, #2a3470 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
  overflow: hidden;
}
.hero-image-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-dark);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(15,20,36,0.06);
  font-size: 13px;
  z-index: 3;
}
.float-card-1 {
  top: 10%;
  left: 12%;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 16px;
}
.float-card-2 {
  bottom: 18%;
  left: 4%;
  width: 240px;
  padding: 14px 16px;
}
.float-card-3 {
  bottom: 8%;
  right: 6%;
  background: #0e1124;
  color: #fff;
  width: 200px;
  padding: 16px;
}

.card-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.card-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4f6bff, #2a3aa8);
}
.card-title { font-size: 13px; font-weight: 600; line-height: 1.2; }
.card-sub { font-size: 11px; color: var(--text-mute); line-height: 1.3; }
.card-list { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--text-dark); }
.card-list .muted { color: var(--text-faint); }
.card-list > div { display: inline-flex; align-items: center; gap: 8px; }

.card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b94b3;
  margin-bottom: 6px;
}
.card-metric {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 8px;
}
.card-trend { font-size: 12px; color: #21C4E6; font-weight: 500; letter-spacing: 0; }
.card-foot { font-size: 11px; color: #8b94b3; margin-top: 8px; }

.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.badge-dot.ok { background: #21C4E6; box-shadow: 0 0 0 3px rgba(33,196,230,0.18); }
.badge-dot.warn { background: #f1b245; box-shadow: 0 0 0 3px rgba(241,178,69,0.18); }
.badge-dot.mute { background: #9aa3bd; }

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 160px 28px 60px; max-width: none; }
  .hero-right { height: 480px; }
  .hero-accent { clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); }
  .hero-image { left: 8%; right: 8%; }
}

/* ===== Scroll reveal system =====
   Add data-anim="fade-up" (or fade, scale, slide-left, slide-right) to any element.
   data-delay="120" gives ms delay. Triggers once when element enters viewport. */
[data-anim] {
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-anim="fade-up"]    { transform: translateY(28px); }
[data-anim="fade"]       { transform: none; }
[data-anim="scale"]      { transform: scale(0.94); }
[data-anim="slide-left"] { transform: translateX(40px); }
[data-anim="slide-right"]{ transform: translateX(-40px); }

[data-anim].in-view {
  opacity: 1;
  transform: none;
}

/* ===== Section: Services (sticky left + scrolling right) ===== */
.services {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(33, 196, 230, 0.10) 0%, transparent 55%),
    var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 160px);
  position: relative;
  z-index: 2;
}
/* Faint diamond geometry wash on right side */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/><path d='M20 60 L60 20'/></g></svg>");
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 90% 50%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 90% 50%, #000 0%, transparent 65%);
  opacity: 0.55;
}
.services-wrap {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

/* Left — pinned, left-aligned */
.services-left {
  position: sticky;
  top: 200px;
  align-self: start;
  padding-top: clamp(20px, 4vh, 60px);
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #21C4E6;
  margin-bottom: 30px;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #21C4E6;
}
.services-title {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px;
  max-width: 620px;
}
.services-desc {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 0 36px;
}
.services-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 200ms ease, background 200ms ease;
}
.services-cta:hover {
  transform: translateY(-1px);
  background: #e8eefb;
}
.services-cta .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 1px;
}
.services-cta .roll-inner {
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
.services-cta .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.services-cta:hover .roll-inner { transform: translateY(-100%); }

/* Spinnable globe inside the sticky-left column */
.services-globe-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
}
.services-globe {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1;
  display: block;
  cursor: grab;
}
.services-globe:active { cursor: grabbing; }

/* Right — scrolling list */
.services-right {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  padding-left: clamp(32px, 4vw, 64px);
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Exclusive tag (AI Penetration Testing) */
.service-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(33, 196, 230, 0.10);
  border: 1px solid rgba(33, 196, 230, 0.34);
  margin: -4px 0 -4px;
}
.service-item-exclusive .service-icon { color: var(--cyan); }
/* Minimal line-art icon — no box, no background */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 32px;
  height: 32px;
  color: var(--cyan);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 4px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-title {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.service-desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 580px;
}
/* Inline benefit list — dot-separated, no pills */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan-soft);
  letter-spacing: 0.005em;
}
.service-chips li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  position: relative;
}
.service-chips li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  margin: 0 12px;
  opacity: 0.85;
}
.service-chips li:first-child::before { display: none; }

@media (max-width: 900px) {
  .services-wrap { grid-template-columns: 1fr; gap: 48px; }
  .services-left { position: static; }
}

/* ===== Section: Stages (auto-cycling tabs) ===== */
.stages {
  background: var(--paper);
  color: var(--text-dark);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
}
.stages-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.stages-header {
  margin-bottom: 64px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.stages-eyebrow .eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(15,20,36,0.3);
}
.stages-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-dark);
}
.stages-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 auto;
  max-width: 620px;
}

.stages-title-accent { color: var(--accent); }

/* Two-column layout: stepped viz + accordion (with vertical divider) */
.stages-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.stages-layout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 57.45%;
  width: 1px;
  background: rgba(15, 20, 36, 0.10);
  pointer-events: none;
}
@media (max-width: 900px) {
  .stages-layout::before { display: none; }
}

/* ===== Stepped pyramid viz (left) ===== */
.stages-viz {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.85;
  max-width: 820px;
  align-self: center;
}
.step {
  position: absolute;
  border: 1px solid rgba(33, 196, 230, 0.22);
  border-radius: 4px;
  background: var(--accent-tint);
  transition: background 360ms ease, border-color 360ms ease;
}
.step.is-active {
  background-color: var(--bg-hero);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><g fill='none' stroke='%237DDDF0' stroke-width='0.9' opacity='0.85'><path d='M8 6 L8 10 M6 8 L10 8'/><path d='M22 22 L22 26 M20 24 L24 24'/></g></svg>");
  background-size: 32px 32px;
  border-color: var(--accent-hover);
}
.step-startups   { left: 0;   bottom: 0;    width: 78%; height: 50%; }
.step-scale      { left: 28%; bottom: 38%;  width: 50%; height: 32%; }
.step-enterprise { left: 56%; bottom: 64%;  width: 22%; height: 22%; }

.step-pin {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(33, 196, 230, 0.4);
  transform: translateX(-50%);
}
.step-pin::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.step-label {
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 360ms ease;
}
.step.is-active .step-label { color: rgba(255,255,255,0.85); }

/* ===== Accordion (right) ===== */
.stages-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.acc-item {
  background: var(--paper-2);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: background 240ms ease, border-color 240ms ease;
}
.acc-item.is-open {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.22);
  box-shadow: 0 8px 24px rgba(15, 20, 36, 0.05);
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.acc-meta { display: flex; flex-direction: column; gap: 10px; }
.acc-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 5px 10px;
  border-radius: 6px;
}
.acc-title {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text-dark);
}
.acc-chev {
  color: var(--text-mute);
  flex-shrink: 0;
  transition: transform 320ms ease;
}
.acc-item.is-open .acc-chev { transform: rotate(180deg); color: var(--accent); }

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body > * { overflow: hidden; }
.acc-body p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 24px 16px;
  max-width: 480px;
}
.acc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 24px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
}
.acc-link span { transition: transform 200ms ease; display: inline-block; }
.acc-link:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .stages-layout { grid-template-columns: 1fr; }
  .stages-viz { max-width: 360px; margin: 0 auto; }
}

/* ===== Section: The Problem (radar + 4 cards) ===== */
.problem {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
}
.problem-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.problem-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 64px;
}
.problem-title {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.problem-viz {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}
.problem-viz svg { width: 100%; height: 100%; display: block; pointer-events: none; }
.problem-viz { pointer-events: none; }
.radar-target {
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 200px 200px;
}

/* Eye blink — closes briefly every ~6s */
.viz-eye {
  transform-origin: 200px 200px;
  animation: eye-blink 6.2s ease-in-out infinite;
}
@keyframes eye-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%           { transform: scaleY(0.04); }
  96%           { transform: scaleY(1); }
}

/* On section hover — outlines brighten slightly */
.viz-corners, .viz-rings, .viz-eye {
  transition: stroke-opacity 320ms ease;
}
.problem:hover .viz-corners { stroke-opacity: 0.5; }
.problem:hover .viz-rings   { stroke-opacity: 0.28; }
.problem:hover .viz-eye     { stroke-opacity: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px) clamp(28px, 3vw, 56px);
}
.problem-card { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.10); }
.problem-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.problem-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff8870;
}
.problem-card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.32);
}
.problem-card-title {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #ffffff;
}
.problem-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

@media (max-width: 900px) {
  .problem-layout { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}

/* ===== Section: How we work ===== */
.howwework {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0 clamp(100px, 14vh, 160px);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.hw-pattern {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36%;
  pointer-events: none;
  z-index: 0;
}
.hw-dash {
  position: absolute;
  left: -120px;
  height: 2px;
  background: #ff5544;
  border-radius: 2px;
  animation: hw-dash-flow linear infinite;
  opacity: 0.85;
}
@keyframes hw-dash-flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 240px)); }
}

.hw-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.hw-header { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.hw-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8870;
  border: 1px solid rgba(255, 136, 112, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hw-title {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 18px;
  color: #ffffff;
}
.hw-accent { color: #21C4E6; }
.hw-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 560px;
}

/* Horizontal step rail: 4 nodes on a thin emerald line, staggered intro */
.hw-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 56px;
}
.hw-rail {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
}
.hw-rail-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(33, 196, 230, 0.35);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1400ms cubic-bezier(0.7, 0, 0.2, 1);
}
.hw-steps.is-visible .hw-rail-line { transform: scaleX(1); }

.hw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 32px;        /* room above for the node sitting on the rail */
}
.hw-step-node {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-hero);
  border: 1.5px solid #21C4E6;
  transform: translateX(-50%) scale(0);
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hw-steps.is-visible .hw-step:nth-child(2) .hw-step-node,
.hw-steps.is-visible .hw-step:nth-child(3) .hw-step-node,
.hw-steps.is-visible .hw-step:nth-child(4) .hw-step-node,
.hw-steps.is-visible .hw-step:nth-child(5) .hw-step-node {
  transform: translateX(-50%) scale(1);
}
.hw-steps.is-visible .hw-step:nth-child(2) .hw-step-node { transition-delay: 180ms; transform: scale(1); }
.hw-steps.is-visible .hw-step:nth-child(3) .hw-step-node { transition-delay: 460ms; transform: scale(1); }
.hw-steps.is-visible .hw-step:nth-child(4) .hw-step-node { transition-delay: 740ms; transform: scale(1); }
.hw-steps.is-visible .hw-step:nth-child(5) .hw-step-node { transition-delay: 1020ms; transform: scale(1); }

/* On node hover/active, fill with emerald */
.hw-step:hover .hw-step-node { background: #21C4E6; }

.hw-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #21C4E6;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.hw-step-name {
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: #ffffff;
  margin: 0 0 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.hw-step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 220px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.hw-steps.is-visible .hw-step:nth-child(2) > :not(.hw-step-node) { transition-delay: 280ms; }
.hw-steps.is-visible .hw-step:nth-child(3) > :not(.hw-step-node) { transition-delay: 560ms; }
.hw-steps.is-visible .hw-step:nth-child(4) > :not(.hw-step-node) { transition-delay: 840ms; }
.hw-steps.is-visible .hw-step:nth-child(5) > :not(.hw-step-node) { transition-delay: 1120ms; }
.hw-steps.is-visible .hw-step > :not(.hw-step-node) { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
  .hw-steps {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 28px;
  }
  .hw-rail { display: none; }
  .hw-step { padding-top: 0; }
  .hw-step-node { position: static; transform: scale(1); margin-bottom: 12px; }
  .hw-steps.is-visible .hw-step > :not(.hw-step-node) { transition-delay: 0ms !important; }
}

/* ===== Section: Proof / Testimonials ===== */
.proof {
  background: var(--paper);
  color: var(--text-dark);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 6;
}
.proof-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.proof-title {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0 auto 48px;
  color: var(--text-dark);
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  transition: grid-template-columns 540ms cubic-bezier(0.22, 1, 0.36, 1);
}
.proof-grid:has(.proof-card:nth-child(1):hover) { grid-template-columns: 2.3fr 1fr 1fr; }
.proof-grid:has(.proof-card:nth-child(2):hover) { grid-template-columns: 1fr 2.3fr 1fr; }
.proof-grid:has(.proof-card:nth-child(3):hover) { grid-template-columns: 1fr 1fr 2.3fr; }

.proof-card {
  position: relative;
  height: clamp(440px, 56vh, 560px);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}
.proof-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  transition: transform 800ms ease;
  display: block;
}
.proof-card:hover .proof-img { transform: scale(1.05); }

/* Dim gradient overlay so text is readable */
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.20) 0%, rgba(8, 12, 20, 0.0) 35%, rgba(8, 12, 20, 0.7) 100%);
  pointer-events: none;
}

.proof-logo {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.proof-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 26px 24px;
  z-index: 2;
  color: #ffffff;
}
.proof-quote {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 460px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease 80ms, transform 320ms ease 80ms;
}
.proof-card:hover .proof-quote { opacity: 1; transform: translateY(0); }

.proof-attrib { color: rgba(255, 255, 255, 0.92); }
.proof-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.proof-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 800px) {
  /* MOBILE: horizontal swipeable carousel.
     Cards become a horizontal flex strip with scroll-snap so users can
     swipe through them one at a time. JS auto-advances every 5s
     (pauses on touch). Overlay text always visible (no hover state). */
  .proof-grid,
  .proof-grid:has(.proof-card:hover) {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    gap: 16px;
    padding: 0 16px 8px;
    margin: 0 -16px;                /* edge-bleed */
    scroll-padding: 16px;
  }
  .proof-grid::-webkit-scrollbar { display: none; }   /* Webkit */
  .proof-card {
    flex: 0 0 calc(100vw - 64px);   /* one card per viewport */
    max-width: 480px;
    height: auto;
    min-height: 360px;
    border-radius: 16px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  /* Pagination dots below the carousel */
  .proof-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 0;
  }
  .proof-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(10, 18, 48, 0.20);
    transition: background 240ms ease, transform 240ms ease;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .proof-dot.is-active {
    background: var(--cyan);
    transform: scale(1.4);
  }
  .proof-img {
    /* Keep the gradient cover but slightly stronger overlay so text reads */
    background-blend-mode: normal;
  }
  .proof-card::after {
    /* Stronger bottom gradient so the always-visible text stays readable */
    background: linear-gradient(180deg,
      rgba(8, 12, 20, 0.30) 0%,
      rgba(8, 12, 20, 0.15) 25%,
      rgba(8, 12, 20, 0.85) 100%);
  }
  .proof-overlay { padding: 22px 22px 22px; }
  .proof-quote {
    opacity: 1;
    transform: translateY(0);
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .proof-attrib { color: rgba(255, 255, 255, 0.94); }
  .proof-name { font-size: 14px; }
  .proof-role { font-size: 12.5px; }
  .proof-logo { font-size: 12.5px; top: 16px; left: 18px; }
  /* Don't scale on tap (no hover on touch) */
  .proof-card:hover .proof-img { transform: none; }
}

/* ===== Section: Why us (stats with hex pattern bg) ===== */
.why {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 7;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='49' viewBox='0 0 56 49'><polygon points='28,1 55,15 55,34 28,48 1,34 1,15' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1'/></svg>");
  background-size: 56px 49px;
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 0%, #000 50%, transparent 95%);
  mask-image: radial-gradient(ellipse at 60% 50%, #000 0%, #000 50%, transparent 95%);
  opacity: 0.9;
}
.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.6fr minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}
.why-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0;
  padding: clamp(36px, 4vw, 60px) clamp(20px, 2vw, 32px);
  color: #ffffff;
  align-self: center;
}

.why-stat {
  padding: clamp(36px, 4vw, 60px) clamp(20px, 2vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  transition: background 320ms ease;
}
.why-stat {
  cursor: default;
}
.why-stat:hover {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(33, 196, 230, 0.45) 0%, rgba(33, 196, 230, 0.08) 60%, transparent 100%),
    rgba(33, 196, 230, 0.06);
  border-left-color: rgba(33, 196, 230, 0.45);
  box-shadow: inset 0 0 0 1px rgba(33, 196, 230, 0.18);
}
.why-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-right: 1px solid transparent;
  transition: border-color 320ms ease;
}
.why-stat:hover::after {
  border-right-color: rgba(33, 196, 230, 0.45);
}
.why-stat-num {
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 16px;
}
.why-stat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  max-width: 220px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.10); }
  .why-title { padding-bottom: 12px; }
}

/* ===== Section: Additional resources ===== */
.resources {
  background: var(--paper);
  color: var(--text-dark);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 8;
}
.resources-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.resources-title {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0 auto 40px;
  color: var(--text-dark);
  text-align: center;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.resource-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 280ms ease, box-shadow 280ms ease;
  cursor: pointer;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 20, 36, 0.08);
}

.resource-panel {
  position: relative;
  border-radius: 12px;
  padding: 18px 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  overflow: hidden;
}
.resource-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill='none' stroke='white' stroke-opacity='0.05' stroke-width='1'><line x1='30' y1='0' x2='30' y2='40'/></g></svg>");
  background-size: 40px 40px;
  pointer-events: none;
}
.resource-panel-deep {
  background: linear-gradient(135deg, #071A5C 0%, #1f3aa0 100%);
}
.resource-panel-mid {
  background: linear-gradient(135deg, #21c4e6 0%, #7dddf0 100%);
}
.resource-panel-light {
  background: linear-gradient(135deg, #21C4E6 0%, #A6E8F3 100%);
  color: #071A5C;
}
.resource-panel-light::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill='none' stroke='%23071A5C' stroke-opacity='0.06' stroke-width='1'><line x1='30' y1='0' x2='30' y2='40'/></g></svg>");
}

.resource-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  align-self: flex-start;
  color: currentColor;
}
.resource-panel-light .resource-icon { background: rgba(7, 26, 92, 0.14); }
.resource-type {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.resource-headline {
  position: relative;
  z-index: 1;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0;
}

.resource-tags { display: flex; gap: 8px; }
.resource-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  background: var(--paper-2);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 6px;
}
.resource-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* ===== Section: Final CTA (sticky-bottom reveal) =====
   Pins to bottom of viewport as you scroll into it,
   then the footer slides up over it (mirrors the hero pattern). */
.final-cta {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(33, 196, 230, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(33, 196, 230, 0.10) 0%, transparent 60%),
    var(--cyan-tint);
  color: var(--ink);
  min-height: clamp(440px, 62vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%230E2A8C' stroke-opacity='0.06' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
  opacity: 0.7;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.final-cta-title {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 38px;
  max-width: 900px;
  text-wrap: balance;
}

/* Pill button: navy half + cyan chip with arrow (mirrors the reference) */
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow:
    0 10px 32px rgba(14, 42, 140, 0.22),
    0 2px 6px rgba(14, 42, 140, 0.14);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
  overflow: hidden;
}
.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(14, 42, 140, 0.30),
    0 2px 8px rgba(14, 42, 140, 0.18);
}
.final-cta-btn-text {
  display: inline-flex;
  padding: 18px 28px;
}
.final-cta-btn .roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 1px;
}
.final-cta-btn .roll-inner {
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
}
.final-cta-btn .roll-inner::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 0; top: 100%;
  width: 100%;
}
.final-cta-btn:hover .roll-inner { transform: translateY(-100%); }
.final-cta-chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 6px 6px 8px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.final-cta-btn:hover .final-cta-chip {
  transform: rotate(-45deg);
}
.final-cta-btn:hover .final-cta-chip svg {
  transform: rotate(45deg);
}
.final-cta-chip svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

@media (max-width: 720px) {
  .final-cta { min-height: 480px; }
  .final-cta-title { font-size: clamp(36px, 9vw, 56px); }
  .final-cta-btn-text { padding: 14px 22px; font-size: 15px; }
  .final-cta-chip { width: 46px; height: 46px; }
}

/* ======================================================
   PAGE-LEVEL PATTERNS (shared across inner pages)
   ====================================================== */

/* Compact page hero — dark navy, cyan diamond pattern, used on all inner pages */
.page-hero {
  position: relative;
  z-index: 0;
  margin: 12px 36px 36px;
  border-radius: 30px;
  padding: clamp(120px, 18vh, 200px) clamp(24px, 5vw, 80px) clamp(80px, 12vh, 140px);
  min-height: clamp(440px, 60vh, 620px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(33, 196, 230, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(33, 196, 230, 0.12) 0%, transparent 50%),
    var(--bg-hero);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 26, 92, 0.18);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.10' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  opacity: 0.5;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 26px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(33, 196, 230, 0.10);
  border: 1px solid rgba(33, 196, 230, 0.30);
}
.page-hero-title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 auto 22px;
  max-width: 1000px;
  text-wrap: balance;
}
.page-hero-accent { color: var(--cyan); }
.page-hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 660px;
}

/* ======================================================
   CONTACT — sticky-info-left, form-right
   ====================================================== */
.contact {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.contact-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.contact-info {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 14px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contact-info-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  transition: color 200ms ease;
}
.contact-info-line.is-static { cursor: default; }
.contact-info-line:not(.is-static):hover { color: var(--cyan); }
.contact-info-line:not(.is-static):hover .contact-info-icon {
  background: rgba(33, 196, 230, 0.16);
  border-color: rgba(33, 196, 230, 0.45);
  color: var(--cyan);
}
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ice);
  border: 1px solid var(--line);
  color: var(--navy);
  flex-shrink: 0;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.contact-info-value { line-height: 1.4; }

.contact-sla {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-mute);
}
.contact-sla strong { color: var(--ink); font-weight: 600; }
.contact-sla-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 12px;
  vertical-align: middle;
}

.contact-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ice);
  border: 1px solid var(--line);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.contact-social a:hover {
  background: rgba(33, 196, 230, 0.10);
  border-color: rgba(33, 196, 230, 0.40);
  color: var(--cyan);
}

/* === FORM === */
.contact-form-wrap {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3.4vw, 44px);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px 12px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-field:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(33, 196, 230, 0.14);
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
  transition: color 200ms ease;
}
.form-field:focus-within .form-label { color: var(--cyan); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 0;
}
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%230A1230' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 6 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 11px 7px;
  padding-right: 22px;
  cursor: pointer;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mute);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--cyan);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-consent a:hover { color: var(--cyan); }

.form-submit {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0;
  padding: 0 0 0 22px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 42, 140, 0.30);
}
.form-submit-text { display: inline-flex; padding: 13px 14px 13px 0; }
.form-submit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  margin: 4px 4px 4px 8px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.form-submit:hover .form-submit-chip { transform: rotate(-45deg); }
.form-submit:hover .form-submit-chip svg { transform: rotate(45deg); }
.form-submit-chip svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

.form-footnote {
  font-size: 13px;
  color: var(--text-mute);
  margin: 4px 0 0;
}
.form-footnote a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-footnote a:hover { color: var(--cyan); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ======================================================
   NEXT-STEPS — 3-step "what happens next" cards
   ====================================================== */
.next-steps {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.next-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.06' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}
.next-steps-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.next-steps-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.next-steps-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 14px;
  color: #ffffff;
}
.next-steps-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.step-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.step-card:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-3px);
}
.step-card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.step-card-title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ffffff;
}
.step-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
@media (max-width: 800px) {
  .next-steps-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   ABOUT — story (sticky-left), values, stats, team
   ====================================================== */

.about-story {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.about-story-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.about-story-left {
  position: sticky;
  top: 160px;
  align-self: start;
}
.about-story-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.about-story-title {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.about-story-tag {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
  max-width: 420px;
}
.about-story-right {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  border-left: 1px solid var(--line);
  padding-left: clamp(32px, 4vw, 56px);
}
.about-story-block h3 {
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
.about-story-block p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0;
}
@media (max-width: 900px) {
  .about-story-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-story-left { position: static; }
  .about-story-right { border-left: none; padding-left: 0; }
}

/* === VALUES === */
.values {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.values-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}
.values-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.values-header {
  text-align: center;
  margin-bottom: 56px;
}
.values-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.values-title-accent { color: var(--cyan); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.value-card {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.value-card:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-3px);
}
.value-card-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.value-card-title {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ffffff;
}
.value-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* === ABOUT STATS === */
.about-stats {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 8vh, 100px) 0;
  position: relative;
  z-index: 4;
}
.about-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat {
  padding: 36px clamp(20px, 2vw, 32px);
  border-left: 1px solid var(--line);
  transition: background 280ms ease;
}
.about-stat:first-child { border-left: none; }
.about-stat:hover { background: var(--ice); }
.about-stat-num {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-stat-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 220px;
}
@media (max-width: 900px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat { border-left: none; border-top: 1px solid var(--line); }
  .about-stat:first-child,
  .about-stat:nth-child(2) { border-top: none; }
}

/* === TEAM === */
.team {
  background: var(--ice);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 5;
}
.team-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.team-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.team-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.team-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}
.team-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-mute);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 26px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.team-card:hover {
  border-color: rgba(33, 196, 230, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 42, 140, 0.08);
}
.team-card-photo {
  width: 132px;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-hero) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.team-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.10' stroke-width='1'><path d='M0 20 L20 0 L40 20 L20 40 Z'/></g></svg>");
  background-size: 40px 40px;
}
.team-card-placeholder .team-card-photo {
  background: var(--ice);
  color: var(--cyan);
  border: 2px dashed rgba(33, 196, 230, 0.40);
}
.team-card-name {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
  color: var(--ink);
}
.team-card-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan);
  margin: 0 0 12px;
}
.team-card-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
.team-card-bio a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.team-card-bio a:hover { color: var(--cyan); }
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 96px 1fr; gap: 18px; padding: 22px; }
  .team-card-photo { width: 96px; height: 96px; font-size: 28px; }
}

/* ======================================================
   SERVICES PAGE — sticky service nav + detail blocks
   ====================================================== */
.svc-page {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 2;
}
.svc-page-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* LEFT: sticky service nav */
.svc-nav {
  position: sticky;
  top: 140px;
  align-self: start;
}
.svc-nav-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.svc-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line);
}
.svc-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 18px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color 200ms ease, border-color 200ms ease;
}
.svc-nav-list a:hover { color: var(--ink); }
.svc-nav-list a.is-active {
  color: var(--ink);
  border-left-color: var(--cyan);
  font-weight: 600;
}
.svc-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  transition: background 200ms ease, transform 200ms ease;
}
.svc-nav-list a.is-active .svc-nav-dot { background: var(--cyan); transform: scale(1.4); }

/* RIGHT: detail blocks */
.svc-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 100px);
  min-width: 0;
}
.svc-block {
  scroll-margin-top: 120px;   /* so anchor scroll doesn't hide under the navbar */
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.svc-block:last-child { border-bottom: none; padding-bottom: 0; }
.svc-block-head { margin-bottom: 18px; }
.svc-block-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.svc-block-tag-exclusive {
  color: var(--cyan);
  background: rgba(33, 196, 230, 0.10);
  border-color: rgba(33, 196, 230, 0.32);
}
.svc-block-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.svc-block-lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 26px;
  max-width: 680px;
}
.svc-block-list h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.svc-block-list ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-block-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.svc-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.svc-block-list strong { color: var(--ink); font-weight: 600; }

.svc-block-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  margin: 0 0 28px;
}
.svc-block-stats > div {
  padding: 22px 18px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}
.svc-block-stats > div:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-2px);
}
.svc-block-stat-num {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--navy);
  line-height: 1;
}
.svc-block-stat-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0;
}
.svc-block-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.svc-block-learn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-right: 18px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.svc-block-learn:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.svc-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 0 0 22px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.003em;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}
.svc-block-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 42, 140, 0.28);
}
.svc-block-cta > span:first-child { padding: 12px 14px 12px 0; }
.svc-block-cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  margin: 3px 3px 3px 6px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-block-cta:hover .svc-block-cta-chip { transform: rotate(-45deg); }
.svc-block-cta:hover .svc-block-cta-chip svg { transform: rotate(45deg); }
.svc-block-cta-chip svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

@media (max-width: 980px) {
  .svc-page-wrap { grid-template-columns: 1fr; gap: 40px; }
  .svc-nav { position: static; }
  .svc-nav-list {
    border-left: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 4px 0;
    scrollbar-width: none;
  }
  .svc-nav-list a {
    border-left: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
  .svc-nav-list a.is-active { border-left: none; border-bottom-color: var(--cyan); }
}
@media (max-width: 720px) {
  .svc-block-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   INDUSTRIES — sector grid + size grid
   ====================================================== */
.sector-grid-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.sector-grid-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.sector-grid-header {
  text-align: center;
  margin-bottom: 56px;
}
.sector-grid-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.sector-grid-title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.sector-card {
  padding: 28px 26px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.sector-card:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 42, 140, 0.10);
}
.sector-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-tint);
  border: 1px solid rgba(33, 196, 230, 0.30);
  color: var(--cyan);
  margin-bottom: 20px;
}
.sector-card-name {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 10px;
}
.sector-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sector-grid { grid-template-columns: 1fr; } }

.size-grid-section {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.size-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.07' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}
.size-grid-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.size-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.size-grid-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.size-grid-title-accent { color: var(--cyan); }
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.size-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
  display: flex;
  flex-direction: column;
}
.size-card:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-3px);
}
.size-card-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.size-card-name {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px;
}
.size-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 18px;
}
.size-card-link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan);
}
.size-card-link:hover { color: var(--cyan-soft); }
@media (max-width: 800px) { .size-grid { grid-template-columns: 1fr; } }

/* ======================================================
   BLOG — filters + featured + grid
   ====================================================== */
.post-list {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 2;
}
.post-list-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.post-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-filter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-mute);
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ice);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.post-filter:hover { color: var(--ink); border-color: rgba(33, 196, 230, 0.40); }
.post-filter.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.post-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.post-featured:hover {
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 42, 140, 0.08);
}
.post-featured-cover {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-hero) 100%);
  overflow: hidden;
}
.post-featured-cover-shape {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.18' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
}
.post-featured-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(33, 196, 230, 0.25) 0%, transparent 60%);
}
.post-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.post-tag-cyan {
  background: rgba(33, 196, 230, 0.20);
  border-color: rgba(33, 196, 230, 0.40);
  color: var(--cyan-soft);
}

.post-featured-body {
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.post-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cyan);
}
.post-featured-title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.post-featured-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
.post-featured-link {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.post-featured-link:hover { color: var(--cyan); }
@media (max-width: 800px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-cover { min-height: 220px; }
  .post-featured-body { padding: 28px; }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.post-card:hover {
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 42, 140, 0.08);
}
.post-card-cover {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-hero) 100%);
  overflow: hidden;
}
.post-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.18' stroke-width='1'><path d='M0 30 L30 0 L60 30 L30 60 Z'/></g></svg>");
  background-size: 60px 60px;
}
.post-card-cover-alt {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
}
.post-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 22px 22px 8px;
  color: var(--ink);
}
.post-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 22px 16px;
  flex: 1;
}
.post-card-meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 22px 22px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* ======================================================
   RESOURCES — featured card + categories
   ====================================================== */
.res-featured {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 8vh, 100px) 0;
  position: relative;
  z-index: 2;
}
.res-featured-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.res-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 3vw, 60px);
  align-items: center;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(33, 196, 230, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, var(--bg-hero) 0%, var(--navy) 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: clamp(36px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.res-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  pointer-events: none;
}
.res-featured-body { position: relative; z-index: 1; }
.res-featured-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(33, 196, 230, 0.12);
  border: 1px solid rgba(33, 196, 230, 0.32);
  margin-bottom: 22px;
}
.res-featured-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 16px;
  color: #ffffff;
  max-width: 540px;
}
.res-featured-desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
  max-width: 520px;
}
.res-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 0 0 22px;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.res-featured-cta:hover { transform: translateY(-2px); }
.res-featured-cta > span:first-child { padding: 12px 14px 12px 0; }
.res-featured-cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  margin: 4px 4px 4px 6px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.res-featured-cta:hover .res-featured-cta-chip { transform: rotate(-45deg); }
.res-featured-cta:hover .res-featured-cta-chip svg { transform: rotate(45deg); }
.res-featured-cta-chip svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

.res-featured-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-stack { position: relative; width: 260px; height: 280px; }
.res-stack-card {
  position: absolute;
  width: 220px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(33, 196, 230, 0.30);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}
.res-stack-1 { left: 0;   top: 0;   transform: rotate(-7deg); }
.res-stack-2 { left: 20px; top: 4px; transform: rotate(0deg); background: rgba(33, 196, 230, 0.12); }
.res-stack-3 { left: 40px; top: 0;   transform: rotate(6deg); }
@media (max-width: 800px) {
  .res-featured-card { grid-template-columns: 1fr; }
  .res-featured-visual { display: none; }
}

.res-categories {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(40px, 6vh, 80px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 3;
}
.res-cat-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.res-cat-head { margin-bottom: 28px; }
.res-cat-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.res-cat-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
}
.res-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
.res-card {
  padding: 24px 22px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.res-card:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
}
.res-card-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.res-card h3 {
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.res-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
@media (max-width: 900px) { .res-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .res-cat-grid { grid-template-columns: 1fr; } }

/* ======================================================
   LEGAL pages (privacy / cookies / terms)
   ====================================================== */
.page-hero-slim {
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: clamp(60px, 8vh, 100px);
  min-height: 0;
}
.page-hero-title-slim {
  font-size: clamp(34px, 4vw, 60px);
}
.legal-stamp {
  margin-top: 24px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.legal {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 2;
}
.legal-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 140px;
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.legal-toc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-toc a {
  font-size: 14px;
  color: var(--text-mute);
  transition: color 200ms ease;
}
.legal-toc a:hover { color: var(--cyan); }

.legal-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.legal-body section { margin-bottom: 56px; scroll-margin-top: 120px; }
.legal-body section:last-child { margin-bottom: 0; }
.legal-body h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-body p { margin: 0 0 14px; color: var(--text-mute); }
.legal-body p strong { color: var(--ink); font-weight: 600; }
.legal-body ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-mute);
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.legal-body ul li strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--cyan); }
.legal-body code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.9em;
  background: var(--ice);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy);
  border: 1px solid var(--line);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.legal-table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--ice);
}
.legal-table td { color: var(--text-mute); vertical-align: top; }
.legal-note {
  font-size: 14px;
  color: var(--text-mute);
  padding: 14px 16px;
  background: var(--cyan-tint);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  margin: 14px 0 20px;
}
@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc {
    position: static;
    border-left: none;
    padding-left: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
}

/* ======================================================
   LEAD MAGNET (isms-register)
   ====================================================== */
.lead-magnet {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(33, 196, 230, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(33, 196, 230, 0.12) 0%, transparent 50%),
    var(--bg-hero);
  color: #ffffff;
  padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.lead-magnet-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.10' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
}
.lead-magnet-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.lead-magnet-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(33, 196, 230, 0.10);
  border: 1px solid rgba(33, 196, 230, 0.32);
  margin-bottom: 26px;
}
.lead-magnet-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(33, 196, 230, 0.7);
}
.lead-magnet-title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 22px;
  max-width: 700px;
}
.lead-magnet-title-accent { color: var(--cyan); }
.lead-magnet-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 32px;
  max-width: 560px;
}
.lead-magnet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-magnet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.lead-magnet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(33, 196, 230, 0.18);
  color: var(--cyan);
  border: 1px solid rgba(33, 196, 230, 0.40);
  flex-shrink: 0;
  margin-top: 1px;
}

.lead-magnet-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(33, 196, 230, 0.20);
  border-radius: 24px;
  padding: clamp(30px, 3.4vw, 44px);
  backdrop-filter: blur(20px);
}
.lead-magnet-form { display: flex; flex-direction: column; gap: 16px; }
.lead-magnet-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

/* Dark variant of form-field (for dark hero forms) */
.form-field-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.form-field-dark .form-label { color: rgba(255, 255, 255, 0.55); }
.form-field-dark:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(33, 196, 230, 0.18); }
.form-field-dark:focus-within .form-label { color: var(--cyan); }
.form-field-dark input,
.form-field-dark textarea,
.form-field-dark select {
  color: #ffffff;
}
.form-field-dark select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-opacity='0.7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 6 11 1'/></svg>");
}
.form-consent-dark { color: rgba(255, 255, 255, 0.62); }
.form-consent-dark a { color: var(--cyan); }
.form-consent-dark a:hover { color: var(--cyan-soft); }

.form-submit-cyan {
  background: var(--cyan);
  color: var(--ink);
}
.form-submit-cyan:hover { box-shadow: 0 12px 30px rgba(33, 196, 230, 0.34); }
.form-submit-chip-light { background: #ffffff; color: var(--ink); }

.lead-magnet-fineprint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.50);
  margin: 4px 0 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lead-magnet-wrap { grid-template-columns: 1fr; }
}

/* "Why this" sub-section on lead magnet page */
.why-this {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.why-this-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.why-this-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.why-this-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.why-this-title {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.why-this-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.why-this-card {
  padding: 28px 26px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.why-this-card:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
}
.why-this-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.why-this-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.why-this-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
@media (max-width: 800px) { .why-this-grid { grid-template-columns: 1fr; } }

/* ======================================================
   PARTNER PAGE
   ====================================================== */
.partner-paths {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.partner-paths-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.partner-paths-header {
  text-align: center;
  margin-bottom: 56px;
}
.partner-paths-title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
}
.partner-paths-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--text-mute);
  margin: 0;
}
.partner-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
}
.partner-path-card {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.partner-path-card:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 42, 140, 0.08);
}
.partner-path-card-featured {
  background: linear-gradient(135deg, var(--bg-hero) 0%, var(--navy) 100%);
  color: #ffffff;
  border-color: rgba(33, 196, 230, 0.28);
  position: relative;
  overflow: hidden;
}
.partner-path-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  pointer-events: none;
}
.partner-path-card-featured > * { position: relative; z-index: 1; }
.partner-path-card-featured:hover {
  border-color: rgba(33, 196, 230, 0.55);
}
.partner-path-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cyan-tint);
  border: 1px solid rgba(33, 196, 230, 0.30);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.partner-path-tag-cyan {
  background: rgba(33, 196, 230, 0.18);
  border-color: rgba(33, 196, 230, 0.40);
  color: var(--cyan);
}
.partner-path-title {
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
  color: inherit;
}
.partner-path-desc {
  font-size: 15px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.78;
  margin: 0 0 8px;
}
.partner-path-card-featured .partner-path-desc { color: rgba(255, 255, 255, 0.78); opacity: 1; }
.partner-path-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: inherit;
}
.partner-path-card-featured .partner-path-list { color: rgba(255, 255, 255, 0.85); }
.partner-path-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-path-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.partner-path-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0;
  padding: 0 0 0 20px;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  margin-top: auto;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-path-cta:hover { transform: translateY(-2px); }
.partner-path-cta > span:first-child { padding: 11px 12px 11px 0; }
.partner-path-card-featured .partner-path-cta { background: #ffffff; }

@media (max-width: 800px) {
  .partner-paths-grid { grid-template-columns: 1fr; }
}

.partner-who {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.partner-who-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.partner-who-header {
  text-align: center;
  margin-bottom: 48px;
}
.partner-who-title {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0;
  color: #ffffff;
}
.partner-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.partner-who-card {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.partner-who-card:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-3px);
}
.partner-who-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.partner-who-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
@media (max-width: 900px) { .partner-who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .partner-who-grid { grid-template-columns: 1fr; } }

/* ======================================================
   LOGIN PAGE — single centered card
   ====================================================== */
.login-page {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(33, 196, 230, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(33, 196, 230, 0.12) 0%, transparent 60%),
    var(--bg-hero);
  color: #ffffff;
  min-height: calc(100vh - 24px);
  margin: 12px 36px 36px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 4vw, 60px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.login-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.10' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
}
.login-card-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
}
.login-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(33, 196, 230, 0.22);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 44px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-brand {
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.login-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
.login-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0 0 8px;
}
.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 2px;
}
.login-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.login-remember input[type="checkbox"] {
  accent-color: var(--cyan);
  width: 14px; height: 14px;
}
.login-forgot {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 500;
}
.login-forgot:hover { color: var(--cyan-soft); }
.login-submit {
  align-self: stretch;
  justify-content: space-between;
}
.login-submit .form-submit-text { padding: 14px 16px; }
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin: 4px 0;
}
.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.login-alt {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.login-alt strong { color: var(--cyan); font-weight: 600; }
.login-alt:hover strong { color: var(--cyan-soft); }

/* ======================================================
   SERVICE DETAIL PAGES — shared patterns
   ====================================================== */

/* Intro: sticky-left, scrolling-right (matches services.html homepage block) */
.svc-intro {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 2;
}
.svc-intro-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.svc-intro-left {
  position: sticky;
  top: 160px;
  align-self: start;
}
.svc-intro-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.svc-intro-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 540px;
  text-wrap: balance;
}
.svc-intro-tag {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
  max-width: 460px;
}
.svc-intro-right {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.4vw, 40px);
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 56px);
}
.svc-intro-right h3 {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.svc-intro-right p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0;
}
.svc-intro-right p + p { margin-top: 10px; }
@media (max-width: 900px) {
  .svc-intro-wrap { grid-template-columns: 1fr; gap: 36px; }
  .svc-intro-left { position: static; }
  .svc-intro-right { border-left: none; padding-left: 0; }
}

/* Benefits — 4 cards on dark navy bg */
.svc-benefits {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.svc-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}
.svc-benefits-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.svc-benefits-header { text-align: center; margin-bottom: 56px; }
.svc-benefits-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.svc-benefits-title-accent { color: var(--cyan); }
.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.svc-benefit-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.svc-benefit-card:hover {
  background: rgba(33, 196, 230, 0.06);
  border-color: rgba(33, 196, 230, 0.32);
  transform: translateY(-3px);
}
.svc-benefit-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.svc-benefit-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ffffff;
}
.svc-benefit-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
@media (max-width: 900px) { .svc-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .svc-benefits-grid { grid-template-columns: 1fr; } }

/* Process — numbered horizontal track (4 steps) */
.svc-process {
  background: var(--ice);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 4;
}
.svc-process-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.svc-process-header { margin-bottom: 56px; max-width: 820px; }
.svc-process-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.svc-process-title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  position: relative;
}
.svc-process-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, rgba(33, 196, 230, 0) 0%, var(--cyan) 50%, rgba(33, 196, 230, 0) 100%);
  pointer-events: none;
}
.svc-process-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
  position: relative;
}
.svc-process-card:hover {
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 42, 140, 0.06);
}
.svc-process-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: -52px auto 18px;
  border: 4px solid #ffffff;
  position: relative;
  z-index: 1;
}
.svc-process-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
  text-align: center;
}
.svc-process-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
  text-align: center;
}
@media (max-width: 900px) {
  .svc-process-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-grid::before { display: none; }
}
@media (max-width: 540px) {
  .svc-process-grid { grid-template-columns: 1fr; }
}

/* Deliverables — checklist */
.svc-deliverables {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 5;
}
.svc-deliverables-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.svc-deliverables-left {
  position: sticky;
  top: 160px;
}
.svc-deliverables-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.svc-deliverables-title {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}
.svc-deliverables-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
  max-width: 360px;
}
.svc-deliverables-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  padding: 16px 18px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 240ms ease, border-color 240ms ease;
}
.svc-deliverables-list li:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.40);
}
.svc-deliverables-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan);
  border: 1px solid rgba(33, 196, 230, 0.32);
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-deliverables-list strong { font-weight: 600; }
.svc-deliverables-list small {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 3px;
}
@media (max-width: 900px) {
  .svc-deliverables-wrap { grid-template-columns: 1fr; gap: 36px; }
  .svc-deliverables-left { position: static; }
}

/* Frameworks chips */
.svc-frameworks {
  background: var(--bg-hero);
  color: #ffffff;
  padding: clamp(60px, 8vh, 100px) 0;
  position: relative;
  z-index: 6;
  overflow: hidden;
  text-align: center;
}
.svc-frameworks::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.08' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
}
.svc-frameworks-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.svc-frameworks-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.svc-frameworks-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: #ffffff;
  margin: 0 0 28px;
  line-height: 1.2;
}
.svc-frameworks-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.svc-frameworks-pills li {
  list-style: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cyan-soft);
  padding: 9px 16px;
  background: rgba(33, 196, 230, 0.10);
  border: 1px solid rgba(33, 196, 230, 0.32);
  border-radius: 999px;
  transition: background 200ms ease, transform 200ms ease;
}
.svc-frameworks-pills li:hover {
  background: rgba(33, 196, 230, 0.20);
  transform: translateY(-2px);
}

/* FAQ accordion */
.svc-faq {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 7;
}
.svc-faq-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.svc-faq-header { text-align: center; margin-bottom: 48px; }
.svc-faq-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.svc-faq-title {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-faq-item {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: background 240ms ease, border-color 240ms ease;
}
.svc-faq-item[open] {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.40);
  box-shadow: 0 8px 24px rgba(14, 42, 140, 0.05);
}
.svc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan);
  border: 1px solid rgba(33, 196, 230, 0.32);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms ease, color 240ms ease;
}
.svc-faq-item[open] .svc-faq-icon {
  transform: rotate(45deg);
  background: var(--cyan);
  color: #ffffff;
}
.svc-faq-item p {
  margin: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 700px;
}

/* Related services strip */
.svc-related {
  background: var(--ice);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 8;
}
.svc-related-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.svc-related-header { margin-bottom: 36px; }
.svc-related-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.svc-related-title {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.svc-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.svc-related-card:hover {
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 42, 140, 0.06);
}
.svc-related-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.svc-related-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0;
}
.svc-related-card-arrow {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan);
  padding-top: 8px;
}
@media (max-width: 900px) { .svc-related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-related-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0 32px;
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.site-footer::before {
  /* Faint cyan diamond geometry like the catalogue's footer wash */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.05' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  opacity: 0.7;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

/* Utility row — Client Login pill top-right */
.footer-utility {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(30px, 4vh, 56px);
}
.footer-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.footer-login-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(33, 196, 230, 0.40);
  transform: translateY(-1px);
}
.footer-login-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
}

/* Main 3-column row */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LEFT — large CTA */
.footer-cta-block { max-width: 540px; }
.footer-cta-headline {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
}
.footer-cta-accent { color: var(--cyan); }
.footer-cta-sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 26px;
  max-width: 360px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.003em;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(33, 196, 230, 0.30);
}
.footer-cta-btn-text {
  display: inline-flex;
  padding: 12px 22px;
}
.footer-cta-btn-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 4px 4px 4px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-cta-btn:hover .footer-cta-btn-chip { transform: rotate(-45deg); }
.footer-cta-btn:hover .footer-cta-btn-chip svg { transform: rotate(45deg); }
.footer-cta-btn-chip svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

/* Column title (Navigation, Connect) */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

/* MIDDLE — nav */
.footer-nav ul,
.footer-connect ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}
.footer-nav a:hover { color: var(--cyan); }

/* RIGHT — connect (icon + label) */
.footer-connect a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}
.footer-connect a:hover { color: var(--cyan); }
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  transition: background 180ms ease, color 180ms ease;
}
.footer-connect a:hover .footer-social-icon {
  background: rgba(33, 196, 230, 0.18);
  color: var(--cyan);
}

/* Bottom legal */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  flex-wrap: wrap;
}
.footer-mark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.40);
  flex: 1;
  text-align: center;
}
.footer-legal {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.footer-legal a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 160ms ease;
}
.footer-legal a:hover { color: var(--cyan); }

@media (max-width: 880px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-copyright { text-align: left; flex: none; }
}

/* ===== Mega-menu blur (rest of site when dropdown is open) ===== */
main { transition: filter 240ms ease; }
body.mega-open main { filter: blur(3px); }

/* ===== Section: About Us / VC video ===== */
.about-video {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 80px);
  position: relative;
  z-index: 90;
  overflow: hidden;
}
.about-video::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%2321C4E6' stroke-opacity='0.07' stroke-width='1'><path d='M0 40 L40 0 L80 40 L40 80 Z'/></g></svg>");
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 65%);
  opacity: 0.7;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.about-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.about-eyebrow .eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--cyan);
}
.about-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
}
.about-title-accent { color: var(--cyan); }
.about-lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 auto;
  max-width: 960px;
}

.about-stage {
  margin: 0;
  position: relative;
}

/* Letterbox video frame with cyan glow */
.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 30px 80px rgba(14, 42, 140, 0.18),
    0 2px 8px rgba(14, 42, 140, 0.08);
  cursor: pointer;
  isolation: isolate;
}
.about-frame::before {
  /* Outer cyan ring that intensifies on scroll-in */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(33, 196, 230, 0.45), rgba(14, 42, 140, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.about-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(33, 196, 230, 0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 480ms ease;
}
.about-frame.is-in-view .about-glow { opacity: 1; }

/* Center play button */
.about-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  box-shadow:
    0 12px 32px rgba(7, 26, 92, 0.22),
    0 0 0 1px rgba(33, 196, 230, 0.18) inset;
  transition: transform 240ms cubic-bezier(0.22, 1.2, 0.36, 1),
              opacity 280ms ease,
              background 220ms ease;
}
.about-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--cyan);
  color: #ffffff;
}
.about-play svg { margin-left: 3px; }   /* nudge play triangle to look optically centered */
.about-frame.is-playing .about-play {
  opacity: 0;
  pointer-events: none;
}
.about-frame.is-playing:hover .about-play {
  opacity: 1;
  pointer-events: auto;
}
.about-frame.is-playing .about-play-icon { display: none; }
.about-frame.is-playing .about-pause-icon { display: inline !important; }
.about-frame.is-playing .about-play svg { margin-left: 0; }

/* Bottom controls — slide up on hover or while playing */
.about-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px 22px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 26, 92, 0.78) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}
.about-frame:hover .about-controls,
.about-frame.is-playing .about-controls {
  transform: translateY(0);
  opacity: 1;
}

.about-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.about-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, #7DDDF0 100%);
  width: 0%;
  border-radius: 999px;
  transition: width 80ms linear;
}
.about-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.about-time { color: rgba(255, 255, 255, 0.88); }
.about-mute {
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}
.about-mute:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.about-caption {
  margin: 22px auto 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .about-caption { white-space: normal; max-width: 480px; }
}

@media (max-width: 720px) {
  .about-play { width: 64px; height: 64px; }
  .about-frame { border-radius: 18px; }
}

/* ===== Section: Frameworks (horizontal scroll) ===== */
.frameworks {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 11vh, 130px) 0 clamp(80px, 11vh, 130px);
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.frameworks-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.frameworks-header {
  position: relative;
  margin-bottom: 44px;
  text-align: center;
}
.frameworks-title {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.frameworks-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  gap: 10px;
}
@media (max-width: 720px) {
  .frameworks-nav {
    position: static;
    margin-top: 22px;
    justify-content: center;
  }
}
.fw-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.fw-nav-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
  transform: translateY(-1px);
}
.fw-nav-btn[aria-disabled="true"] {
  opacity: 0.35;
}

/* Horizontal rail with scroll-snap */
.frameworks-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 22vw, 290px);
  gap: clamp(16px, 1.6vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Extra vertical breathing room so hover-lift + box-shadow don't get clipped
     (overflow-x: auto forces overflow-y to clip by spec). */
  padding: 16px 0 36px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 96%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0%, #000 96%, transparent 100%);
}
.frameworks-rail::-webkit-scrollbar { display: none; }

.framework-card {
  scroll-snap-align: start;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  position: relative;
  overflow: hidden;
}
.framework-card:hover {
  background: #ffffff;
  border-color: rgba(33, 196, 230, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 42, 140, 0.10);
}
.framework-name {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 6px;
}
.framework-desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-mute);
  margin: 0 0 14px;
  max-width: 220px;
}

/* Circular badge — abbreviation in a soft circle */
.framework-badge {
  margin-top: auto;
  align-self: center;
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--navy);
  transition: transform 240ms ease;
}
.framework-badge svg,
.framework-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.framework-card:hover .framework-badge {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .frameworks-header { grid-template-columns: 1fr; }
  .frameworks-nav { justify-content: flex-start; }
  .frameworks-rail { grid-auto-columns: 78vw; }
}

/* ===== Section: Accreditations marquee ===== */
.certs {
  background: var(--paper);
  padding: 64px 0 80px;
  position: relative;
  z-index: 100;
}
.certs-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.certs-label {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 44px;
  font-weight: 600;
}
.certs-marquee {
  overflow: hidden;
  position: relative;
  /* Fade edges so logos don't pop in/out abruptly */
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.certs-track {
  display: flex;
  gap: 200px;
  align-items: center;
  width: max-content;
  animation: cert-scroll 40s linear infinite;
}
.certs-marquee:hover .certs-track { animation-play-state: paused; }
.cert-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
  transition: transform 220ms ease;
}
.cert-logo:hover {
  transform: scale(1.06);
}

@keyframes cert-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Placeholder sections (temporary) ===== */
.placeholder {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(15,20,36,0.06);
  background: var(--paper);
}
.placeholder:nth-of-type(even) { background: var(--paper-2); }
.placeholder-inner span {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.placeholder-footer { min-height: 40vh; background: var(--paper-3) !important; }

/* ======================================================
   Responsive
   ====================================================== */

/* ======================================================
   MOBILE PASS — comprehensive
   ====================================================== */

/* Hamburger button — visible on mobile only */
.nav-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(0.7, 0, 0.2, 1), opacity 220ms ease, background 220ms ease;
}
.site-header.is-light .nav-burger {
  background: rgba(15, 20, 36, 0.06);
  border-color: rgba(15, 20, 36, 0.10);
}
.site-header.is-light .nav-burger span { background: var(--ink); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  /* Hero panel insets 12px from the viewport, with rounded corners.
     Pull navbar contents further in so the logo + CTA + burger sit
     properly inside the hero panel's "wall" instead of brushing the
     edge / corner. */
  .site-header { padding: 24px 32px 0; }
  .nav-wrap {
    /* brand | contact | burger */
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
  }
  .nav-pill, .nav-cta .btn-ghost { display: none; }
  .nav-cta { justify-self: end; }
  .nav-burger { display: inline-flex; }
  body.nav-mobile-open { overflow: hidden; }
}
@media (max-width: 540px) {
  .site-header { padding: 22px 28px 0; }
  .nav-wrap { gap: 6px; }
}
@media (max-width: 380px) {
  .site-header { padding: 20px 24px 0; }
}

/* ======================================================
   MOBILE MENU — standalone, slides in from the right
   Vanta-style clean white sheet with big nav items.
   ====================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  z-index: 2010;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: -24px 0 60px rgba(7, 26, 92, 0.18);
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 2005;
  background: rgba(7, 26, 92, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.mobile-menu-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.mobile-menu-close:hover {
  background: var(--cyan);
  color: #ffffff;
  border-color: var(--cyan);
}

.mobile-menu-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease;
}
.mobile-menu-nav a svg {
  color: var(--text-faint);
  transition: color 200ms ease, transform 200ms ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--cyan);
  background: var(--cyan-tint);
}
.mobile-menu-nav a:hover svg,
.mobile-menu-nav a:active svg {
  color: var(--cyan);
  transform: translateX(3px);
}

.mobile-menu-foot {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: var(--ice);
}
.mobile-menu-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: background 200ms ease, border-color 200ms ease;
}
.mobile-menu-secondary:hover {
  background: var(--cyan-tint);
  border-color: rgba(33, 196, 230, 0.40);
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 0 0 20px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.003em;
  overflow: hidden;
}
.mobile-menu-cta > span:first-child { padding: 14px 14px 14px 0; }
.mobile-menu-cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  margin: 4px 4px 4px 6px;
}

/* Hide the menu on desktop entirely */
@media (min-width: 921px) {
  .mobile-menu, .mobile-menu-scrim { display: none; }
}

@media (max-width: 540px) {
  .btn-primary { padding: 5px 5px 5px 14px; font-size: 14px; }
  .btn-icon { width: 30px; height: 30px; }
}

/* ===== Hero & page-hero — tighter side margins on mobile ===== */
@media (max-width: 720px) {
  .hero {
    margin: 12px 12px 24px;
    border-radius: 22px;
    min-height: calc(100svh - 24px);
  }
  .page-hero {
    margin: 12px 12px 24px;
    border-radius: 22px;
    padding: clamp(100px, 16vh, 140px) 22px clamp(60px, 10vh, 100px);
    min-height: clamp(360px, 56vh, 480px);
  }
  .hero-headline { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 15px; line-height: 1.5; max-width: none; }
  .hero-content { padding: clamp(100px, 14vh, 140px) 20px clamp(360px, 42vh, 480px); }
  .cta-arrow { display: none; }

  .page-hero-title { font-size: clamp(32px, 9vw, 48px); }
  .page-hero-sub { font-size: 15px; }

  /* Hero globe smaller on mobile */
  .hero-globe-frame {
    width: min(720px, 96vw);
    height: clamp(320px, 38vh, 420px);
  }
  .globe-ann { display: none; }
}

/* ===== Sections — reduce padding on mobile ===== */
@media (max-width: 720px) {
  .services,
  .about-video,
  .frameworks,
  .problem,
  .proof,
  .why,
  .stages,
  .resources,
  .final-cta,
  .svc-intro,
  .svc-benefits,
  .svc-process,
  .svc-deliverables,
  .svc-frameworks,
  .svc-faq,
  .svc-related,
  .next-steps,
  .about-story,
  .values,
  .about-stats,
  .sector-grid-section,
  .size-grid-section,
  .post-list,
  .res-featured,
  .res-categories,
  .partner-paths,
  .partner-who,
  .why-this,
  .lead-magnet,
  .contact,
  .legal {
    padding-top: clamp(56px, 10vh, 96px);
    padding-bottom: clamp(56px, 10vh, 96px);
  }
  .services-wrap,
  .about-story-wrap,
  .svc-intro-wrap,
  .svc-deliverables-wrap,
  .contact-wrap,
  .legal-wrap,
  .lead-magnet-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ===== Cards / grids — mobile single-column tightening ===== */
@media (max-width: 720px) {
  /* Services right column padding shrink */
  .services-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 32px;
    margin-top: 8px;
  }
  .services-left { padding-top: 0; }
  .service-title { font-size: 22px; }

  /* About video frame slightly less tall on phone */
  .about-frame { border-radius: 14px; }
  .about-play  { width: 56px; height: 56px; }
  .about-controls { padding: 12px 14px 10px; }
  .about-controls-row { font-size: 11.5px; }

  /* Frameworks card width tightens */
  .frameworks-rail { grid-auto-columns: 78vw; padding: 12px 0 28px; }
  .framework-badge { width: 84px; height: 84px; }
  .framework-badge svg, .framework-badge img { width: 64px; height: 64px; }

  /* Cookie banner */
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner-inner { padding: 14px 16px; gap: 12px; }
  .cookie-banner-title { font-size: 14px; }
  .cookie-banner-text { font-size: 12.5px; }
  .cookie-btn { padding: 8px 14px; font-size: 12.5px; }
  .cookie-btn-primary { padding: 4px 4px 4px 14px; }
  .cookie-btn-chip { width: 24px; height: 24px; }

  /* Footer */
  .footer-inner { padding: 0 22px; }
  .footer-main { padding-bottom: 36px; gap: 36px; }
  .footer-cta-headline { font-size: clamp(28px, 8vw, 38px); }
  .footer-bottom { padding-top: 22px; }

  /* Final CTA */
  .final-cta-title { font-size: clamp(34px, 9vw, 52px); }
  .final-cta-btn-text { font-size: 15px; padding: 14px 20px; }
  .final-cta-chip { width: 44px; height: 44px; }

  /* Form fields — full width single column */
  .form-row { grid-template-columns: 1fr !important; }

  /* Service detail pages — narrower process step circles */
  .svc-process-step { width: 40px; height: 40px; font-size: 14px; margin: -44px auto 14px; }

  /* Service detail page learn-more link should wrap onto own line */
  .svc-block-learn { display: block; margin-right: 0; margin-bottom: 10px; }
  .svc-block-cta { font-size: 14px; }

  /* FAQ headline */
  .svc-faq-title { font-size: clamp(26px, 7vw, 36px); }
  .svc-faq-item summary { padding: 16px 18px; font-size: 15px; }
  .svc-faq-item p { margin: 0 18px 18px; font-size: 14px; }

  /* Certs marquee logos smaller */
  .cert-logo { height: 100px; }
  .certs-track { gap: 100px; }

  /* Problem section red dashes hidden */
  .hw-pattern { display: none; }
  .problem-viz { max-width: 280px; }

  /* Why stats grid */
  .why-grid { grid-template-columns: 1fr; }
  .why-stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.10); padding: 28px 22px; }

  /* Stages viz hidden — keep only accordion */
  .stages-viz { display: none; }
  .stages-layout { grid-template-columns: 1fr; }
  .stages-layout::before { display: none; }

  /* Resources stack */
  .resources-grid { grid-template-columns: 1fr; }

  /* Contact form min-paddings */
  .contact-form-wrap { padding: 24px 20px; border-radius: 18px; }

  /* Legal */
  .legal-body { font-size: 15px; }
  .legal-body h2 { font-size: 20px; }
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 10px 10px; }

  /* Lead magnet form padding */
  .lead-magnet-form-wrap { padding: 24px 20px; }

  /* Service block stats grid */
  .svc-block-stats { grid-template-columns: 1fr 1fr; }

  /* Sticky nav anchors on services page — top offset reduced */
  .svc-block { scroll-margin-top: 80px; }
  .legal-body section { scroll-margin-top: 80px; }

  /* Headlines */
  .about-title,
  .resources-title,
  .proof-title { font-size: clamp(28px, 8vw, 44px); }
}

/* ===== Very small phones (≤380px) ===== */
@media (max-width: 380px) {
  .hero, .page-hero { margin: 8px 8px 16px; border-radius: 18px; }
  .nav-wrap { gap: 8px; }
  .btn-primary span:first-child { display: none; }   /* arrow chip only when very tight */
  .btn-primary { padding: 5px; gap: 0; }
}

/* ============================================================
   AI Pentest page — Evada partnership sections
   ============================================================ */

/* Comparison table */
.svc-compare {
  padding: 120px 0;
  background: var(--bg-hero);
  color: #fff;
}
.svc-compare-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.svc-compare-header {
  text-align: center;
  margin-bottom: 60px;
}
.svc-compare-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.svc-compare-title-accent { color: var(--cyan); }
.svc-compare-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto;
}
.svc-compare-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.svc-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.svc-compare-row > div {
  padding: 20px 28px;
  background: var(--bg-hero);
  font-size: 15px;
  display: flex;
  align-items: center;
}
.svc-compare-row > div:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.svc-compare-row > div:nth-child(2) {
  color: rgba(255, 255, 255, 0.55);
}
.svc-compare-row > div:last-child {
  color: #fff;
  font-weight: 500;
  background: rgba(33, 196, 230, 0.08);
}
.svc-compare-head > div {
  background: rgba(255, 255, 255, 0.04) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 600 !important;
  padding: 16px 28px !important;
}
.svc-compare-head > div:last-child {
  color: var(--cyan) !important;
  background: rgba(33, 196, 230, 0.15) !important;
}
.svc-compare-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.svc-compare-note a { color: var(--cyan); text-decoration: none; }
.svc-compare-note a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .svc-compare { padding: 80px 0; }
  .svc-compare-row { grid-template-columns: 1fr; }
  .svc-compare-row > div { padding: 14px 20px; font-size: 14px; }
  .svc-compare-head { display: none; }
  .svc-compare-row > div:first-child {
    background: rgba(33, 196, 230, 0.15);
    font-size: 11px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px !important;
  }
}

/* Evada spotlight section */
.svc-evada-spotlight {
  padding: 120px 0;
  background: #f5f7fa;
}
.svc-evada-spotlight-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-evada-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--bg-hero);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 24px;
}
.svc-evada-spotlight-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: #0a1230;
}
.svc-evada-spotlight-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #475067;
  margin: 0 0 28px;
}
.svc-evada-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-evada-spotlight-list li {
  padding: 12px 0;
  border-top: 1px solid #e5e9f0;
  font-size: 15px;
  color: #475067;
}
.svc-evada-spotlight-list li:last-child { border-bottom: 1px solid #e5e9f0; }
.svc-evada-spotlight-list strong { color: #0a1230; }

.svc-evada-spotlight-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-evada-spotlight-stat-card {
  padding: 28px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 1px 2px rgba(10, 18, 48, 0.04);
  text-align: center;
}
.svc-evada-stat-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.svc-evada-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #67738a;
}
.svc-evada-spotlight-frameworks {
  grid-column: 1 / -1;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #67738a;
  background: #fff;
  border: 1px dashed #d6dce6;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .svc-evada-spotlight { padding: 80px 0; }
  .svc-evada-spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-evada-spotlight-right { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Mobile audit fixes — global image safety + long-word wrap
   ============================================================ */

/* Prevent ANY image from overflowing its container on mobile */
img {
  max-width: 100%;
  height: auto;
}

/* Allow long emails/URLs to wrap inside their containers
   (footer email, contact pages, etc.) */
.footer-cta-btn-text,
.footer-bottom,
.footer-copyright,
.footer-mark,
.contact-detail,
.contact-value,
.footer-connect a span,
.proof-attrib,
.svc-deliverables-list,
a[href^="mailto"],
a[href^="http"] {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* Safety: prevent horizontal page scroll on mobile from any rogue element.
   IMPORTANT: use `clip` not `hidden` — `overflow-x: hidden` would break
   `position: sticky` on .services-left and any other sticky element. */
html, body {
  overflow-x: clip;
}


/* Proof card: logo treatment.
   Brand-blue background sits on the CARD, not the img.
   Otherwise the CSS filter inverts the background too → white on white. */
.proof-card:has(.proof-img-contain) {
  background: linear-gradient(135deg, #0E2470 0%, #071A5C 60%, #050F3E 100%);
}
.proof-img-contain {
  /* Override the .proof-img absolute positioning. Center the logo
     at its NATURAL size — never upscale, never blur on zoom. */
  position: absolute !important;
  inset: auto !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  /* Cap at natural size so browsers don't stretch low-res PNGs */
  max-width: min(60%, 240px);
  max-height: min(60%, 200px);
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0;
  /* Crispness hints */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Filter affects only image content (logo) → pure white on card's blue */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
/* On hover, the parent's transform: scale(1.05) shouldn't double-up
   with the centring transform on the image */
.proof-card:hover .proof-img-contain {
  transform: translate(-50%, -50%) scale(1.03);
}
/* Hide the text logo overlay when image logo is present (avoids duplication) */
.proof-card:has(.proof-img-contain) .proof-logo {
  display: none;
}

/* Proof card with TEXT logo (no image — for clients whose logos are
   negative-space designs that don't work with the white-filter approach).
   Used by CCSW (white text inside coloured circle = breaks under filter). */
.proof-card-text-logo {
  background: linear-gradient(135deg, #0E2470 0%, #071A5C 60%, #050F3E 100%);
}
.proof-card-text-logo .proof-logo-large {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  background: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   Mobile menu accordion groups (Services / Industries / Resources)
   ============================================================ */
.mobile-menu-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  user-select: none;
}
.mobile-menu-group > summary::-webkit-details-marker {
  display: none;
}
.mobile-menu-group > summary > span {
  flex: 1;
}
.mobile-menu-chevron {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu-group[open] > summary > .mobile-menu-chevron {
  transform: rotate(180deg);
}
.mobile-menu-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0 14px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  margin-left: 6px;
}
.mobile-menu-sub a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}
.mobile-menu-sub a:hover,
.mobile-menu-sub a:active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mobile-menu-sub a.mobile-menu-sub-all {
  font-weight: 600;
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-radius: 0;
}
.mobile-menu-sub a.mobile-menu-sub-all:hover {
  background: transparent;
  color: var(--cyan);
}


/* Hide proof dots on desktop (carousel is only on mobile) */
.proof-dots { display: none; }
@media (max-width: 700px) {
  .proof-dots { display: flex; }
}

/* ============================================================
   Thank-you page
   ============================================================ */
.thank-you-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin: 0 auto 28px;
  border-radius: 100px;
  background: rgba(33, 196, 230, 0.12);
  border: 1px solid rgba(33, 196, 230, 0.35);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ty-next {
  padding: clamp(80px, 12vh, 120px) 0;
  background: var(--paper);
}
.ty-next-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.ty-next-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 56px;
  color: var(--ink);
}
.ty-next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.ty-next-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 22px;
  background: var(--paper-2);
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.ty-next-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(10, 18, 48, 0.06);
}
.ty-next-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.ty-next-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ty-next-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #475067;
  margin: 0 0 18px;
  flex: 1;
}
.ty-next-card-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.005em;
}
@media (max-width: 700px) {
  .ty-next-grid { grid-template-columns: 1fr; }
}
