/* =========================================================================
   Argenvale — Premium Global Growth Partner
   Design tokens carry the original brand palette (navy + gold) but the
   visual language is rebuilt: editorial typography, layered depth,
   glass surfaces, gradient atmospheres, and refined motion.
   ========================================================================= */

/* ---------- Tokens ------------------------------------------------------ */
:root {
  /* Brand — sourced from the original site to preserve color palette */
  --navy-deep: hsl(210, 60%, 8%);
  --navy: hsl(210, 55%, 13%);
  --navy-soft: hsl(210, 40%, 18%);
  --navy-line: hsl(210, 30%, 22%);

  --gold: hsl(42, 50%, 54%);
  --gold-light: hsl(42, 55%, 70%);
  --gold-deep: hsl(38, 55%, 42%);

  --steel-deep: hsl(210, 45%, 28%);
  --steel: hsl(210, 42%, 42%);
  --steel-light: hsl(210, 38%, 62%);
  --sky: hsl(210, 60%, 88%);
  --sky-soft: hsl(210, 55%, 94%);

  --ivory: hsl(40, 38%, 96%);
  --bg: #ffffff;
  --bg-alt: hsl(210, 20%, 97%);
  --bg-blue: hsl(210, 40%, 92%);
  --card: #ffffff;
  --border: hsl(210, 18%, 90%);
  --border-soft: hsl(210, 22%, 94%);

  --fg: hsl(210, 40%, 11%);
  --fg-muted: hsl(210, 12%, 38%);
  --fg-subtle: hsl(210, 10%, 52%);

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --container: 1240px;
  --container-narrow: 980px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(15, 31, 51, 0.04), 0 1px 1px rgba(15, 31, 51, 0.03);
  --shadow-2: 0 8px 20px -8px rgba(15, 31, 51, 0.10), 0 2px 6px rgba(15, 31, 51, 0.05);
  --shadow-3: 0 30px 60px -30px rgba(15, 31, 51, 0.30), 0 12px 28px -12px rgba(15, 31, 51, 0.14);
  --shadow-gold: 0 18px 48px -20px hsla(42, 50%, 54%, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;
}

/* ---------- Reset & base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--navy-deep); }

/* ---------- Typography -------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow.on-dark::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow.on-dark.center::before { background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { background: linear-gradient(90deg, transparent, var(--gold)); width: 32px; }
.eyebrow.center::after {
  content: ""; width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.steel { color: var(--steel-deep); }
.eyebrow.steel::before { background: linear-gradient(90deg, transparent, var(--steel)); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--navy-deep);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.65rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; font-family: var(--font-sans); letter-spacing: -0.005em; }
p { margin: 0; color: var(--fg-muted); }
.italic-accent { font-style: italic; color: var(--gold-deep); font-family: var(--font-display); font-weight: 400; }
.italic-steel { font-style: italic; color: var(--steel-deep); font-family: var(--font-display); font-weight: 400; }

.lede { font-size: 1.125rem; line-height: 1.65; color: var(--fg-muted); max-width: 56ch; }

/* ---------- Layout helpers --------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; font-size: 1.05rem; }

/* ---------- Background fields ----------------------------------------- */
.bg-aurora {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.bg-aurora::before, .bg-aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
}
.bg-aurora::before {
  width: 620px; height: 620px;
  background: radial-gradient(circle, hsla(42, 60%, 60%, 0.35), transparent 60%);
  top: -180px; right: -120px;
}
.bg-aurora::after {
  width: 560px; height: 560px;
  background: radial-gradient(circle, hsla(207, 50%, 50%, 0.25), transparent 60%);
  bottom: -200px; left: -160px;
}
.bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, hsla(210, 30%, 50%, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(210, 30%, 50%, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 100%);
}
.bg-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(hsla(210, 30%, 30%, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* ---------- Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-med) var(--ease), color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Globally bold arrow — rendered via SVG mask (Flaticon-style rounded) */
.arrow {
  display: inline-block;
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  vertical-align: -0.18em;
  font-size: 0;
  line-height: 1;
  transition: transform var(--t-med) var(--ease);
}
.arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='m14 6 6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='m14 6 6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.btn-primary {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  color: var(--ivory);
  box-shadow: var(--shadow-2), inset 0 1px 0 hsla(0,0%,100%,0.08);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold), inset 0 1px 0 hsla(0,0%,100%,0.5);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold), inset 0 1px 0 hsla(0,0%,100%,0.5);
}
.btn-gold:hover,
.btn-gold:active,
.btn-gold:focus-visible {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  color: var(--gold-light);
  box-shadow: var(--shadow-3), inset 0 1px 0 hsla(0,0%,100%,0.08);
  transform: translateY(-1px);
  filter: none;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn-gold-outline:hover,
.btn-gold-outline:active,
.btn-gold-outline:focus-visible {
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), inset 0 1px 0 hsla(0,0%,100%,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--border);
}
.btn-ghost:hover,
.btn-ghost:active,
.btn-ghost:focus-visible {
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-ghost.on-dark { color: var(--ivory); border-color: hsla(0,0%,100%,0.2); }
.btn-ghost.on-dark:hover,
.btn-ghost.on-dark:active,
.btn-ghost.on-dark:focus-visible {
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy-deep);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.btn-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.btn-link .arrow { transition: transform var(--t-med) var(--ease); }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease), border-color var(--t-med) var(--ease), padding var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.nav-solid {
  background: linear-gradient(180deg, hsla(210, 70%, 10%, 0.92), hsla(210, 65%, 12%, 0.85));
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 8px 24px -12px hsla(210, 80%, 4%, 0.4);
}
.nav.scrolled { padding: 10px 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: transform var(--t-med) var(--ease), filter var(--t-med) var(--ease);
}
.brand-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px hsla(210, 70%, 12%, 0.18));
  transition: transform var(--t-med) var(--ease), filter var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.brand:hover .brand-img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 4px 10px hsla(210, 70%, 30%, 0.3));
}
.nav.scrolled .brand-img { height: 36px; }
.footer .brand-img {
  height: 56px;
  filter: drop-shadow(0 3px 10px hsla(42, 70%, 50%, 0.32));
}
@media (max-width: 760px) {
  .brand-img { height: 36px; }
  .nav.scrolled .brand-img { height: 32px; }
  .footer .brand-img { height: 44px; }
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: hsla(0, 0%, 100%, 0.78);
  border-radius: 999px;
  transition: color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.nav-link:hover { color: #ffffff; background: hsla(0, 0%, 100%, 0.08); }
.nav-link.active { color: var(--gold-light); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid hsla(0, 0%, 100%, 0.18);
  border-radius: 999px; padding: 10px 14px;
  font-size: 13px; font-weight: 500; color: hsla(0, 0%, 100%, 0.9);
  align-items: center; gap: 8px;
}
.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.nav-toggle .bars span { width: 16px; height: 1.5px; background: hsla(0, 0%, 100%, 0.9); transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease); }
body.nav-open .nav-toggle .bars span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.nav-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .bars span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: linear-gradient(180deg, hsla(210, 60%, 8%, 0.96), hsla(210, 55%, 13%, 0.96));
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; text-align: center; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3rem); color: var(--ivory);
  display: inline-block; padding: 6px 0;
  background-image: linear-gradient(90deg, var(--gold), var(--gold-light));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 95%;
  transition: background-size var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.mobile-menu a:hover { background-size: 100% 1px; color: var(--gold-light); }
.mobile-menu .mobile-cta { margin-top: 28px; }
.mobile-menu .mobile-cta a.btn-gold {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  display: inline-flex;
  background: linear-gradient(180deg, hsl(42, 60%, 62%), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold), inset 0 1px 0 hsla(0,0%,100%,0.5);
}
.mobile-menu .mobile-cta a.btn-gold:hover {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  color: var(--gold-light);
}

/* ---------- Hero ------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(100px, 12vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, hsla(210, 70%, 70%, 0.28), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 30%, hsla(42, 60%, 80%, 0.18), transparent 60%),
    linear-gradient(180deg, hsl(210, 45%, 96%) 0%, var(--bg) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, hsla(210, 30%, 40%, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(210, 30%, 40%, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center;
}
.hero h1 { margin-top: 22px; }
.hero h1 .em { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.hero-lede { margin-top: 26px; font-size: 1.2rem; line-height: 1.6; color: var(--fg-muted); max-width: 56ch; }
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 30px; border-top: 1px solid var(--border);
}
.hero-meta-item .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-deep); line-height: 1;
}
.hero-meta-item .num em { color: var(--gold-deep); font-style: italic; }
.hero-meta-item .label {
  display: block; margin-top: 6px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-subtle);
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 36px;
  background: linear-gradient(180deg, hsla(0,0%,100%,0.85), hsla(0,0%,100%,0.5));
  border: 1px solid hsla(210, 30%, 80%, 0.5);
  box-shadow: var(--shadow-3);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, hsla(42, 70%, 70%, 0.18), transparent 50%);
  pointer-events: none;
}
.hero-loop {
  position: relative; aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.hero-loop svg { width: 100%; height: 100%; }
.hero-loop .pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--navy-deep);
  box-shadow: var(--shadow-2);
}
.hero-loop .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-loop .pill.p1 { top: 6%; left: 18%; }
.hero-loop .pill.p2 { top: 22%; right: 4%; }
.hero-loop .pill.p3 { bottom: 22%; right: 12%; }
.hero-loop .pill.p4 { bottom: 6%; left: 28%; }
.hero-loop .pill.p5 { top: 48%; left: -4%; }

.hero-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-stack-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.hero-stack-row .ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, hsla(42, 60%, 90%, 1), hsla(42, 50%, 80%, 1));
  color: var(--gold-deep);
}
.hero-stack-row .meta { display: flex; flex-direction: column; gap: 2px; }
.hero-stack-row .meta strong { font-size: 14px; color: var(--navy-deep); font-weight: 600; }
.hero-stack-row .meta span { font-size: 12px; color: var(--fg-subtle); }

/* ---------- Trust band (editorial premium) ---------------------------- */
.trust-band {
  padding: 110px 0;
  background: var(--card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
/* Atlas-style arcs as background watermark */
.trust-atlas {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(1400px, 130%);
  aspect-ratio: 16 / 7;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.trust-atlas line, .trust-atlas ellipse, .trust-atlas circle {
  stroke: hsla(210, 30%, 55%, 0.35);
  fill: none;
  stroke-width: 0.6;
}
.trust-atlas .compass {
  fill: hsla(42, 60%, 60%, 0.55);
}
/* Subtle moving accent line at top */
.trust-band::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 240px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-light) 50%, transparent);
  opacity: 0.55;
  animation: trustSweep 6s ease-in-out infinite;
}
@keyframes trustSweep {
  0%, 100% { transform: translateX(calc(-50% - 220px)); opacity: 0; }
  50%      { transform: translateX(calc(-50% + 220px)); opacity: 0.75; }
}

.trust-band-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.trust-ornament {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold);
  margin-top: 8px;
}
.trust-ornament::before, .trust-ornament::after {
  content: ""; width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(42, 60%, 60%, 0.55));
}
.trust-ornament::after { background: linear-gradient(90deg, hsla(42, 60%, 60%, 0.55), transparent); }
.trust-ornament svg {
  filter: drop-shadow(0 0 6px hsla(42, 70%, 60%, 0.4));
}

.trust-market .accent {
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 14px;
  box-shadow: 0 0 8px hsla(42, 70%, 60%, 0.5);
}
.trust-market { flex-direction: column; align-items: center; }
.trust-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 16px;
}
.trust-label::before, .trust-label::after {
  content: ""; width: 32px; height: 1px;
  background: var(--border);
}

.trust-markets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-market {
  position: relative;
  padding: 8px 38px;
  display: inline-flex; align-items: center;
}
.trust-market + .trust-market::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}
.trust-market strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  line-height: 1.1;
  position: relative;
  transition: color var(--t-med) var(--ease);
  cursor: default;
}
.trust-market strong::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease);
}
.trust-market:hover strong { color: var(--gold-deep); }
.trust-market:hover strong::after { transform: scaleX(0.7); }

@media (max-width: 980px) {
  .trust-market { padding: 8px 22px; }
  .trust-market + .trust-market::before { height: 20px; }
}
@media (max-width: 640px) {
  .trust-band { padding: 64px 0; }
  .trust-markets { flex-direction: column; gap: 20px; }
  .trust-market { padding: 0; }
  .trust-market + .trust-market::before {
    left: 50%; top: -10px; transform: translateX(-50%);
    width: 28px; height: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-band::before { animation: none !important; opacity: 0.4; transform: translateX(-50%); }
}

/* ---------- One System (Loop diagram) ---------------------------------- */
.system {
  background: var(--card);
  position: relative;
}
.system-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.system-loop {
  position: relative; aspect-ratio: 1/1; max-width: 520px; margin: 0 auto;
  isolation: isolate;
}

/* Ambient backdrop glow */
.system-loop::before {
  content: ""; position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(42, 70%, 60%, 0.10), transparent 70%);
  filter: blur(24px);
  z-index: 0;
  animation: hubPulse 6s ease-in-out infinite;
}

/* Rotating dashed orbits */
.loop-orbit {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.loop-orbit.outer {
  width: 80%; height: 80%;
  margin: -40% 0 0 -40%;
  border: 1px dashed hsla(210, 30%, 60%, 0.42);
  animation: spinFwd 60s linear infinite;
}
.loop-orbit.inner {
  width: 56%; height: 56%;
  margin: -28% 0 0 -28%;
  border: 1px dashed hsla(42, 50%, 60%, 0.42);
  animation: spinRev 45s linear infinite;
}
.loop-orbit.outer::before,
.loop-orbit.outer::after,
.loop-orbit.inner::before {
  content: ""; position: absolute;
  border-radius: 50%;
}
.loop-orbit.outer::before {
  width: 12px; height: 12px;
  top: -6px; left: 50%; margin-left: -6px;
  background: var(--gold);
  box-shadow: 0 0 16px hsla(42, 70%, 60%, 0.65), 0 0 4px hsla(42, 80%, 70%, 0.9);
}
.loop-orbit.outer::after {
  width: 8px; height: 8px;
  bottom: -4px; left: 50%; margin-left: -4px;
  background: var(--steel-light);
  box-shadow: 0 0 12px hsla(210, 60%, 60%, 0.55);
}
.loop-orbit.inner::before {
  width: 8px; height: 8px;
  top: 50%; right: -4px; margin-top: -4px;
  background: var(--gold-light);
  box-shadow: 0 0 12px hsla(42, 70%, 70%, 0.7);
}
@keyframes spinFwd { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

/* Subtle radial rays from center to each node — pulsing */
.loop-rays {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.loop-rays line {
  stroke: hsl(42, 60%, 60%); stroke-width: 1; stroke-dasharray: 2 5;
  stroke-opacity: 0.25;
  animation: rayPulse 3s ease-in-out infinite;
}
.loop-rays line:nth-child(2) { animation-delay: 0.6s; }
.loop-rays line:nth-child(3) { animation-delay: 1.2s; }
.loop-rays line:nth-child(4) { animation-delay: 1.8s; }
@keyframes rayPulse {
  0%, 100% { stroke-opacity: 0.12; }
  50%      { stroke-opacity: 0.55; }
}

/* Node wrapper handles positioning, .node handles animation */
.system-loop .node-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.system-loop .node-wrap.n1 { top: 4%;  left: 50%; }
.system-loop .node-wrap.n2 { top: 50%; left: 96%; }
.system-loop .node-wrap.n3 { top: 96%; left: 50%; }
.system-loop .node-wrap.n4 { top: 50%; left: 4%;  }

.system-loop .node {
  position: relative;
  width: 140px; padding: 18px 16px;
  background: linear-gradient(180deg, hsla(0,0%,100%,0.96) 0%, hsla(220, 30%, 98%, 0.88) 100%);
  border: 1px solid hsla(210, 30%, 88%, 1);
  border-radius: var(--radius);
  text-align: center;
  box-shadow:
    0 12px 30px -10px hsla(210, 60%, 18%, 0.18),
    0 4px 10px -4px hsla(210, 60%, 18%, 0.1),
    inset 0 1px 0 hsla(0,0%,100%,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: nodeFloat 7s ease-in-out infinite;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.system-loop .node-wrap.n1 .node { animation-delay: 0s; }
.system-loop .node-wrap.n2 .node { animation-delay: -1.75s; }
.system-loop .node-wrap.n3 .node { animation-delay: -3.5s; }
.system-loop .node-wrap.n4 .node { animation-delay: -5.25s; }
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.system-loop .node:hover {
  border-color: hsla(42, 50%, 60%, 0.6);
  box-shadow:
    0 22px 48px -16px hsla(210, 60%, 18%, 0.32),
    0 8px 14px -4px hsla(42, 60%, 50%, 0.18),
    inset 0 1px 0 hsla(0,0%,100%,1);
}
.system-loop .node .ico {
  position: relative;
  width: 40px; height: 40px; margin: 0 auto 10px;
  border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 80%, 1));
  border: 1px solid hsla(42, 50%, 75%, 0.6);
  color: var(--gold-deep);
  transition: transform var(--t-med) var(--ease);
}
.system-loop .node:hover .ico {
  transform: scale(1.08) rotate(-3deg);
}
.system-loop .node .ico::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 16px;
  background: radial-gradient(circle, hsla(42, 70%, 60%, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
}
.system-loop .node:hover .ico::after { opacity: 1; }
.system-loop .node strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy-deep); }
.system-loop .node span { font-size: 11px; color: var(--fg-subtle); letter-spacing: 0.04em; }

/* Central hub — animated planet sphere */
.system-loop .center-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 168px; height: 168px;
}
.system-loop .center-wrap::before {
  content: ""; position: absolute; inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(42, 70%, 55%, 0.32), transparent 65%);
  z-index: -1;
  filter: blur(14px);
  animation: hubPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
.system-loop .center-wrap::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid hsla(42, 60%, 60%, 0.45);
  animation: hubRipple 3.5s ease-out infinite;
  pointer-events: none;
}
.system-loop .center {
  position: relative;
  width: 100%; height: 100%; border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, hsla(42, 80%, 80%, 0.4), transparent 30%),
    radial-gradient(circle at 32% 28%, hsla(210, 65%, 60%, 0.5), transparent 55%),
    radial-gradient(circle at 72% 78%, hsla(210, 92%, 5%, 0.7), transparent 60%),
    linear-gradient(140deg, hsl(210, 65%, 28%) 0%, hsl(210, 78%, 11%) 100%);
  box-shadow:
    inset 0 0 60px hsla(210, 92%, 4%, 0.5),
    inset -25px -25px 70px hsla(210, 92%, 4%, 0.55),
    inset 25px 25px 50px hsla(210, 60%, 50%, 0.25),
    0 0 0 1px hsla(0,0%,100%,0.06),
    0 35px 70px -20px hsla(210, 80%, 8%, 0.55),
    0 0 90px hsla(42, 60%, 60%, 0.18);
  overflow: hidden;
  isolation: isolate;
  display: grid; place-items: center;
  animation: hubBreath 6s ease-in-out infinite;
}
/* Specular highlight on the sphere */
.system-loop .center > .shine {
  position: absolute; top: 6%; left: 16%; right: 28%;
  height: 30%;
  background: radial-gradient(ellipse, hsla(0,0%,100%,0.22), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 2;
}
/* Rotating planet grid */
.system-loop .planet-grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  animation: planetSpin 30s linear infinite;
}
.system-loop .planet-grid ellipse,
.system-loop .planet-grid line {
  stroke: hsla(42, 75%, 75%, 0.5);
  fill: none;
  stroke-width: 0.5;
}
.system-loop .planet-grid .bold {
  stroke: hsla(42, 80%, 85%, 0.75);
  stroke-width: 0.7;
}
@keyframes planetSpin { to { transform: rotate(360deg); } }
.system-loop .planet-label {
  position: relative; z-index: 3;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.18;
  letter-spacing: 0.02em;
  padding: 0 12px;
  text-shadow:
    0 2px 6px hsla(210, 92%, 4%, 0.95),
    0 0 18px hsla(42, 70%, 35%, 0.7);
}
@keyframes hubBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
@keyframes hubPulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
@keyframes hubRipple {
  0%   { inset: -4px; opacity: 0.7; border-color: hsla(42, 70%, 60%, 0.6); }
  100% { inset: -24px; opacity: 0; border-color: hsla(42, 70%, 60%, 0.0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .system-loop::before,
  .loop-orbit, .loop-rays line,
  .system-loop .center, .system-loop .center::before, .system-loop .center::after,
  .system-loop .node { animation: none !important; }
}

/* Mobile: keep orbital layout but scale down */
@media (max-width: 760px) {
  .system-loop {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  /* Smaller nodes that fit */
  .system-loop .node {
    width: 110px;
    padding: 12px 10px;
  }
  .system-loop .node .ico {
    width: 34px; height: 34px;
    margin-bottom: 8px;
  }
  .system-loop .node strong { font-size: 12px; }
  .system-loop .node span { font-size: 10px; }

  /* Smaller planet */
  .system-loop .center-wrap {
    width: 120px;
    height: 120px;
  }
  .system-loop .center {
    font-size: 0;
  }
  .system-loop .planet-label { display: none; }

  /* Pull nodes inward so they don't overflow */
  .system-loop .node-wrap.n2 { left: 84%; }
  .system-loop .node-wrap.n4 { left: 16%; }
  .system-loop .node-wrap.n1 { top: 8%; }
  .system-loop .node-wrap.n3 { top: 92%; }
}
@media (max-width: 420px) {
  .system-loop .node { width: 96px; padding: 10px 8px; }
  .system-loop .node .ico { width: 30px; height: 30px; }
  .system-loop .center-wrap { width: 100px; height: 100px; }
  .system-loop .node-wrap.n2 { left: 80%; }
  .system-loop .node-wrap.n4 { left: 20%; }
}

.system-points { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.system-points li {
  display: flex; gap: 16px; align-items: flex-start;
  list-style: none;
}
.system-points li .b {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: hsla(42, 60%, 90%, 1); color: var(--gold-deep);
  display: grid; place-items: center; font-size: 14px;
  border: 1px solid hsla(42, 50%, 80%, 1);
}
.system-points li p { color: var(--fg); line-height: 1.6; }
.system-points li p strong { color: var(--navy-deep); font-weight: 600; }

/* ---------- Services grid ---------------------------------------------- */
.services-section { background: var(--card); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(42, 50%, 60%, 0.6), transparent);
  opacity: 0; transition: opacity var(--t-med) var(--ease);
}
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, hsla(42, 60%, 80%, 0.18), transparent 50%);
  opacity: 0; transition: opacity var(--t-med) var(--ease); pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: hsla(42, 40%, 70%, 0.5);
}
.service-card:hover::before, .service-card:hover::after { opacity: 1; }
.service-card .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--steel-deep);
  letter-spacing: 0.1em;
}
.service-card .ico {
  width: 52px; height: 52px; border-radius: 14px; margin: 22px 0 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 80%, 1));
  color: var(--gold-deep);
  border: 1px solid hsla(42, 50%, 75%, 0.7);
  box-shadow:
    0 6px 16px -6px hsla(42, 60%, 50%, 0.22),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.6);
}
.service-card h3 { color: var(--navy-deep); }
.service-card .tagline {
  margin-top: 10px; font-size: 0.95rem; color: var(--gold-deep);
  font-style: italic; font-family: var(--font-display); font-size: 1.05rem;
}
.service-card .body { margin-top: 14px; font-size: 0.96rem; line-height: 1.6; flex: 1; }
.service-card .more {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--navy-deep);
  transition: color var(--t-med) var(--ease);
}
.service-card .more .arrow { transition: transform var(--t-med) var(--ease); }
.service-card:hover .more { color: var(--gold-deep); }
.service-card:hover .more .arrow { transform: translateX(4px); }

/* Services mobile carousel */
@media (max-width: 760px) {
  .services-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 14px 4px;
    margin-left: -14px;
    margin-right: -14px;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 440px;
    scroll-snap-align: center;
  }
}

/* Dots indicator for services carousel */
.services-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.services-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.services-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .services-dots { display: flex; }
}

/* ---------- Why Argenvale (split editorial) ---------------------------- */
.why {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 30%, hsla(42, 60%, 60%, 0.18), transparent 50%),
    radial-gradient(circle at 88% 70%, hsla(207, 50%, 50%, 0.18), transparent 50%);
}
.why::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }
.why h2 { color: var(--ivory); }
.why h2 em { color: var(--gold-light); font-style: italic; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-body p { color: hsla(0,0%,100%,0.78); line-height: 1.75; font-size: 1.05rem; margin-top: 22px; }
.why-pillars { display: flex; flex-direction: column; gap: 18px; }
.why-pillar {
  padding: 22px;
  background: hsla(0,0%,100%,0.04);
  border: 1px solid hsla(0,0%,100%,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  display: flex; gap: 18px; align-items: flex-start;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.why-pillar:hover {
  background: hsla(0,0%,100%,0.07);
  border-color: hsla(42, 50%, 60%, 0.3);
  transform: translateX(4px);
}
.why-pillar .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, hsla(42, 60%, 60%, 0.18), hsla(42, 50%, 50%, 0.08));
  color: var(--gold-light);
  border: 1px solid hsla(42, 50%, 60%, 0.2);
}
.why-pillar h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--ivory); margin: 0 0 4px; }
.why-pillar p { color: hsla(0,0%,100%,0.7); font-size: 0.94rem; line-height: 1.55; }

/* ---------- Process / How We Work -------------------------------------- */
.process {
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(hsla(210, 30%, 50%, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 55%, #000 40%, transparent 100%);
          mask-image: radial-gradient(ellipse 75% 70% at 50% 55%, #000 40%, transparent 100%);
  opacity: 0.55;
}
.process::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 30%, hsla(42, 60%, 80%, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 70%, hsla(210, 60%, 70%, 0.14), transparent 60%);
}
.process .container { position: relative; z-index: 1; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: ""; position: absolute; top: 64px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(42, 60%, 60%, 0.55) 20%, hsla(42, 60%, 60%, 0.55) 80%, transparent);
  z-index: 0;
}
.process-grid::after {
  content: ""; position: absolute; top: 64px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px hsla(42, 70%, 60%, 0.7), 0 0 4px hsla(42, 80%, 70%, 0.9);
  animation: beadTravel 8s ease-in-out infinite;
  transform: translateY(-50%);
  z-index: 1;
}
@keyframes beadTravel {
  0%   { left: 6%; }
  50%  { left: calc(94% - 10px); }
  100% { left: 6%; }
}
.process-step {
  position: relative; z-index: 2;
  padding: 0 14px;
  background: transparent;
  border: none;
  text-align: center;
  transition: transform var(--t-med) var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
}
.process-step .step-icon {
  width: 38px; height: 38px;
  margin: 18px auto 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 82%, 1));
  border: 1px solid hsla(42, 50%, 75%, 0.6);
  color: var(--gold-deep);
  display: grid; place-items: center;
}
.process-step .marker {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--card), var(--bg-alt));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-deep);
  font-style: italic;
  box-shadow: 0 0 0 6px var(--card), var(--shadow-2);
  position: relative;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.process-step .marker::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid hsla(42, 50%, 60%, 0.3);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease), inset var(--t-med) var(--ease);
}
.process-step:hover .marker {
  background: linear-gradient(140deg, hsl(210, 50%, 22%) 0%, hsl(210, 60%, 14%) 100%);
  color: var(--gold-light);
  transform: scale(1.05);
  border-color: hsla(210, 40%, 30%, 0.6);
}
.process-step:hover .marker::before { opacity: 1; inset: -10px; }
.process-step h3 { font-size: 1.25rem; text-align: center; font-weight: 700; letter-spacing: -0.01em; }
.process-step p { margin-top: 12px; font-size: 0.94rem; line-height: 1.55; text-align: center; }

/* ---------- Outcomes (premium card grid) ------------------------------ */
.outcomes { background: var(--card); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.outcome-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  box-shadow:
    0 1px 2px hsla(210, 60%, 18%, 0.04),
    inset 0 1px 0 hsla(0,0%,100%,0.9);
}
.outcome-card:hover {
  transform: translateY(-6px);
  border-color: hsla(42, 50%, 60%, 0.55);
  box-shadow:
    0 28px 56px -24px hsla(210, 60%, 18%, 0.28),
    0 10px 22px -8px hsla(42, 60%, 50%, 0.15),
    inset 0 1px 0 hsla(0,0%,100%,1);
}

.outcome-card .outcome-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.outcome-card .outcome-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.4s var(--ease);
}
.outcome-card:hover .outcome-media img { transform: scale(1.06); }
.outcome-card .outcome-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.28));
  pointer-events: none;
}
.outcome-card .outcome-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  background: hsl(42, 65%, 95%);
  border: 1px solid hsla(42, 50%, 70%, 0.6);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  align-self: flex-start;
  margin-bottom: 24px;
}
.outcome-card .outcome-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.outcome-card .outcome-body {
  padding: 38px 32px 32px;
  display: flex; flex-direction: column;
  flex: 1;
}
.outcome-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.outcome-card p {
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
}
.outcome-card .read-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.outcome-card .read-more .arrow {
  transition: transform var(--t-med) var(--ease);
  color: var(--gold-deep);
}
.outcome-card:hover .read-more {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.outcome-card:hover .read-more .arrow {
  transform: translateX(4px);
}
.outcome-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t-med) var(--ease);
}
.outcome-card:hover::after { transform: scaleX(1); }

@media (max-width: 1024px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .outcomes-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 14px 4px;
    margin-left: -14px;
    margin-right: -14px;
    max-width: none;
  }
  .outcomes-grid::-webkit-scrollbar { display: none; }
  .outcome-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 440px;
    scroll-snap-align: center;
  }
  .outcome-card .outcome-body { padding: 28px 24px 26px; }
}

/* Dots indicator for outcomes carousel */
.outcomes-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.outcomes-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.outcomes-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .outcomes-dots { display: flex; }
}

/* ---------- Global focus ----------------------------------------------- */
.global {
  background: var(--card);
  position: relative; overflow: hidden;
}
.global-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.global-visual {
  position: relative; aspect-ratio: 1/1; max-width: 480px; margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, hsla(42, 60%, 70%, 0.25), transparent 60%),
    linear-gradient(135deg, hsla(210, 40%, 92%, 1), hsla(220, 14%, 96%, 1));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  box-shadow: var(--shadow-3), inset 0 1px 0 hsla(0,0%,100%,0.8);
  overflow: hidden;
}
.global-visual::before, .global-visual::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px dashed hsla(210, 30%, 50%, 0.25);
}
.global-visual::before { inset: 12%; }
.global-visual::after { inset: 24%; }
.global-pins {
  position: absolute; inset: 0;
}
.global-pin {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--navy-deep);
  box-shadow: var(--shadow-2);
}
.global-pin .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0.5);
  animation: pulse 2s var(--ease) infinite;
}
.global-pin.us { top: 32%; left: 18%; }
.global-pin.uk { top: 26%; left: 54%; }
.global-pin.eu { top: 42%; right: 12%; animation-delay: 0.6s; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0.5); }
  70% { box-shadow: 0 0 0 14px hsla(42, 60%, 60%, 0); }
  100% { box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0); }
}
.global-tags {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px;
}
.global-tags span {
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--navy-deep);
}

/* ---------- CTA section ------------------------------------------------ */
.cta {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--navy-deep);
  color: var(--ivory);
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, hsla(42, 60%, 60%, 0.22), transparent 60%),
    radial-gradient(circle at 20% 25%, hsla(207, 40%, 40%, 0.18), transparent 50%);
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 90%);
}
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta h2 { color: var(--ivory); }
.cta h2 em { color: var(--gold-light); font-style: italic; }
.cta p { color: hsla(0,0%,100%,0.78); margin: 20px auto 40px; max-width: 56ch; font-size: 1.1rem; }
.cta .actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ----------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  color: hsla(0,0%,100%,0.7);
  padding: 80px 0 36px;
  border-top: none;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 100% 60% at 0% 30%, hsla(42, 60%, 60%, 0.06), transparent 60%);
}
.footer .container { position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid hsla(0,0%,100%,0.08);
}
.footer .brand { color: var(--ivory); }
.footer .brand .brand-mark { background: linear-gradient(135deg, hsla(0,0%,100%,0.08), hsla(0,0%,100%,0.02)); border: 1px solid hsla(0,0%,100%,0.1); }
.footer-tag { margin-top: 18px; font-size: 0.95rem; max-width: 38ch; line-height: 1.65; color: hsla(0,0%,100%,0.65); }
.footer-col h5 {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light); margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: hsla(0,0%,100%,0.7);
  transition: color var(--t-fast) var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
}
.footer-slogan {
  font-family: var(--font-display); font-style: italic; color: var(--gold-light);
  font-size: 1rem; letter-spacing: 0.04em;
}

/* ---------- Page header (sub pages) — dark navy editorial ------------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(150px, 17vw, 200px) 0 clamp(80px, 9vw, 110px);
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ivory);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 18% 22%, hsla(42, 60%, 60%, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 82% 28%, hsla(207, 60%, 50%, 0.22), transparent 55%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
}
.page-hero .container {
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero > .container > .reveal { max-width: 920px; margin: 0 auto; }
.page-hero h1 {
  margin: 22px auto 0;
  max-width: 22ch;
  color: var(--ivory);
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p.lede {
  margin: 24px auto 0;
  font-size: 1.15rem;
  max-width: 64ch;
  color: hsla(0, 0%, 100%, 0.78);
}
.page-hero .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}
.page-hero .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.page-hero .eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- Editorial blocks ------------------------------------------ */
.editorial-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: stretch;
}
.editorial-body p + p { margin-top: 22px; }
.editorial-body p { font-size: 1.05rem; line-height: 1.75; color: var(--fg); }

/* Approach pillars (3 principles) */
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.approach-pillar {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--card), hsl(210, 30%, 99%));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  overflow: hidden;
}
.approach-pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0; transform: scaleX(0.4);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.approach-pillar:hover {
  transform: translateY(-6px);
  border-color: hsla(42, 50%, 60%, 0.5);
  box-shadow: 0 22px 44px -16px hsla(210, 60%, 18%, 0.18);
}
.approach-pillar:hover::before { opacity: 1; transform: scaleX(1); }
.approach-pillar .pillar-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.approach-pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.approach-pillar p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .approach-pillars { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}

/* Approach intro grid (text + photo) */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.approach-text .eyebrow { margin-bottom: 18px; }
.approach-text h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.approach-text p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 52ch;
}
.approach-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px hsla(210, 70%, 14%, 0.32),
    0 12px 28px -12px hsla(210, 70%, 14%, 0.18);
}
.approach-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.6s var(--ease);
}
.approach-image:hover img { transform: scale(1.04); }
.approach-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.18));
  pointer-events: none;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* Premium 2-column manifesto block */
.manifesto {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(20px, 4vw, 40px) 0;
}
.manifesto::before {
  content: "";
  position: absolute;
  left: 50%; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, hsla(42, 60%, 60%, 0.55) 50%, transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
}
.manifesto::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow:
    0 0 0 6px var(--card),
    0 0 14px hsla(42, 70%, 60%, 0.55);
  pointer-events: none;
}
.manifesto-left .eyebrow { margin-bottom: 24px; }
.manifesto-left h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}
.manifesto-right p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--fg);
  max-width: 56ch;
}
.manifesto-right p::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4em;
  color: var(--gold);
  float: left;
  line-height: 0.86;
  padding: 6px 14px 0 0;
  font-weight: 500;
}

/* Subtle background for manifesto containers */
.manifesto-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--card), hsl(210, 30%, 99%));
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 2px 8px hsla(210, 60%, 18%, 0.04),
    inset 0 1px 0 hsla(0,0%,100%,0.9);
  overflow: hidden;
}
.manifesto-wrap::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, hsla(42, 60%, 80%, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, hsla(210, 60%, 70%, 0.16), transparent 60%);
}
.manifesto-wrap .manifesto { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .manifesto::before { display: none; }
  .manifesto::after { display: none; }
}

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.value-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  position: relative; overflow: hidden;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: hsla(42, 40%, 70%, 0.4); }
.value-card .ico {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, hsla(42, 60%, 92%, 1), hsla(42, 55%, 82%, 1));
  color: var(--gold-deep);
  border: 1px solid hsla(42, 40%, 75%, 0.6);
}
.value-card h3 { font-size: 1.25rem; }
.value-card p { margin-top: 12px; font-size: 0.98rem; line-height: 1.6; }

/* Values mobile carousel */
@media (max-width: 760px) {
  .values-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 14px 4px;
    margin-left: -14px;
    margin-right: -14px;
  }
  .values-grid::-webkit-scrollbar { display: none; }
  .value-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 440px;
    scroll-snap-align: center;
  }
}

/* Dots indicator for values carousel */
.values-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.values-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.values-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .values-dots { display: flex; }
}

/* ---------- Service: Within the Ecosystem (related services) ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.related-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 28px 26px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  box-shadow: 0 1px 2px hsla(210, 60%, 18%, 0.04), inset 0 1px 0 hsla(0,0%,100%,0.9);
}
.related-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0; transform: scaleX(0.4);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: hsla(42, 50%, 60%, 0.55);
  box-shadow:
    0 18px 36px -14px hsla(210, 60%, 18%, 0.22),
    0 4px 10px -2px hsla(42, 60%, 50%, 0.12),
    inset 0 1px 0 hsla(0,0%,100%,1);
}
.related-card:hover::before { opacity: 1; transform: scaleX(1); }
.related-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}
.related-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 80%, 1));
  border: 1px solid hsla(42, 50%, 75%, 0.7);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.related-card .tagline {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}
.related-card .read-link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--navy-deep);
  transition: color var(--t-med) var(--ease);
}
.related-card .read-link .arrow { transition: transform var(--t-med) var(--ease); color: var(--gold-deep); }
.related-card:hover .read-link { color: var(--gold-deep); }
.related-card:hover .read-link .arrow { transform: translateX(4px); }
.related-card.is-current {
  border-color: hsla(42, 60%, 65%, 0.6);
  background: linear-gradient(135deg, hsla(42, 65%, 97%, 1), hsla(42, 50%, 94%, 1));
  pointer-events: none;
}
.related-card.is-current .read-link { color: var(--gold-deep); opacity: 0.65; }
.related-card.is-current .read-link::after {
  content: " (current)";
  font-size: 0.85em;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .related-grid {
    display: flex !important;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    gap: 12px;
    padding: 6px 16px 6px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .related-grid::-webkit-scrollbar { display: none; }
  .related-card {
    flex: 0 0 calc(100% - 56px);
    max-width: 280px;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  /* Force reveal cards inside carousels to be visible (no fade-in animation issue at horizontal overflow) */
  .related-grid .related-card.reveal,
  .services-grid .service-card.reveal,
  .outcomes-grid .outcome-card.reveal,
  .resources-grid .resource-card.reveal,
  .values-grid .value-card.reveal,
  .partners-grid .partner-card.reveal,
  .audit-process .audit-step.reveal,
  .stack-grid .stack-pillar {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Dots indicator for related (services ecosystem) carousel */
.related-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}
.related-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.28);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.related-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .related-dots { display: flex !important; }
}

/* ---------- About: Five Levers (staircase stack) ---------------------- */
.about-stack { background: var(--card); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: start;
}
.stack-pillar {
  position: relative;
  padding: 32px 22px 28px;
  background: linear-gradient(180deg, var(--card), hsl(210, 30%, 99%));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  box-shadow: 0 1px 2px hsla(210, 60%, 18%, 0.04), inset 0 1px 0 hsla(0,0%,100%,0.9);
}
.stack-pillar:nth-child(2) { transform: translateY(28px); }
.stack-pillar:nth-child(3) { transform: translateY(0); }
.stack-pillar:nth-child(4) { transform: translateY(28px); }
.stack-pillar:nth-child(5) { transform: translateY(0); }
.stack-pillar:nth-child(1):hover { transform: translateY(-6px); }
.stack-pillar:nth-child(2):hover { transform: translateY(22px); }
.stack-pillar:nth-child(3):hover { transform: translateY(-6px); }
.stack-pillar:nth-child(4):hover { transform: translateY(22px); }
.stack-pillar:nth-child(5):hover { transform: translateY(-6px); }
.stack-pillar:hover {
  border-color: hsla(42, 50%, 60%, 0.55);
  box-shadow: 0 22px 44px -18px hsla(210, 60%, 18%, 0.22), inset 0 1px 0 hsla(0,0%,100%,1);
}
.stack-pillar .stack-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--steel-deep);
  display: block;
  margin-bottom: 18px;
}
.stack-pillar .stack-ico {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 80%, 1));
  border: 1px solid hsla(42, 50%, 75%, 0.7);
  color: var(--gold-deep);
  display: grid; place-items: center;
}
.stack-pillar h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.stack-pillar .tagline {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 980px) {
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .stack-pillar:nth-child(n) { transform: none; }
  .stack-pillar:hover { transform: translateY(-6px); }
}
@media (max-width: 760px) {
  .stack-grid {
    display: flex !important;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    gap: 12px;
    padding: 6px 16px 6px;
    margin-top: 36px;
    width: 100%;
    box-sizing: border-box;
  }
  .stack-grid::-webkit-scrollbar { display: none; }
  .stack-pillar {
    flex: 0 0 calc(100% - 56px);
    max-width: 280px;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .stack-pillar:nth-child(n) { transform: none !important; }
}

/* Dots indicator for stack carousel */
.stack-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}
.stack-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.28);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.stack-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .stack-dots { display: flex !important; }
}

/* ---------- About: Fragmented vs Integrated comparison ---------------- */
.about-compare {
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.about-compare::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 18% 30%, hsla(0, 50%, 70%, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 82% 70%, hsla(42, 70%, 70%, 0.18), transparent 60%);
}
.about-compare > .container { position: relative; z-index: 1; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}
.compare-card {
  position: relative;
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px hsla(210, 60%, 18%, 0.06);
}
.compare-old {
  opacity: 0.85;
  background: linear-gradient(180deg, hsl(210, 12%, 97%), hsl(210, 10%, 95%));
}
.compare-new {
  border-color: hsla(42, 50%, 65%, 0.6);
  background: linear-gradient(180deg, hsl(40, 45%, 99%), hsl(40, 40%, 96%));
  box-shadow:
    0 18px 36px -14px hsla(42, 60%, 50%, 0.22),
    inset 0 1px 0 hsla(0,0%,100%,1);
}
.compare-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.compare-old .compare-tag {
  background: hsl(210, 10%, 92%); color: hsl(210, 12%, 40%);
  border: 1px solid hsl(210, 10%, 85%);
}
.compare-old .compare-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: hsl(210, 10%, 55%);
}
.compare-new .compare-tag {
  background: hsla(42, 60%, 92%, 1); color: var(--gold-deep);
  border: 1px solid hsla(42, 50%, 78%, 1);
}
.compare-new .compare-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.compare-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 22px;
}
.compare-old h3 { color: hsl(210, 14%, 32%); }
.compare-new h3 { color: var(--navy-deep); }
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 0.98rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-soft);
}
.compare-card li:last-child { border-bottom: none; }
.compare-old li {
  color: hsl(210, 12%, 45%);
  text-decoration: line-through;
  text-decoration-color: hsla(210, 10%, 55%, 0.4);
  text-decoration-thickness: 1px;
}
.compare-old li::before {
  content: "✕";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: hsl(210, 10%, 88%);
  color: hsl(210, 10%, 50%);
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
}
.compare-new li { color: var(--navy-deep); font-weight: 500; }
.compare-new li::before {
  content: "✓";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: hsla(42, 60%, 92%, 1);
  color: var(--gold-deep);
  border: 1px solid hsla(42, 50%, 75%, 0.7);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: bold;
}
.compare-arrow {
  display: grid; place-items: center;
  align-self: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  color: var(--gold-light);
  box-shadow: 0 14px 28px -12px hsla(210, 80%, 8%, 0.35);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
  .compare-arrow { transform: rotate(90deg); }
}

/* ---------- Philosophy band -------------------------------------------- */
.philosophy {
  background: var(--card);
  color: var(--fg);
  position: relative; overflow: hidden;
}
.philosophy::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 18% 18%, hsla(42, 70%, 80%, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 60% at 82% 82%, hsla(210, 60%, 70%, 0.18), transparent 60%);
}
.philosophy .container { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.philosophy h2 { color: var(--navy-deep); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.philosophy h2 em { color: var(--gold-deep); font-style: italic; }
.philosophy p { margin-top: 24px; font-size: 1.15rem; color: var(--fg-muted); line-height: 1.75; }
.philosophy .eyebrow.on-dark { color: var(--gold-deep); }
.philosophy .eyebrow.on-dark::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.philosophy .eyebrow.on-dark.center::before { background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }

/* ---------- Partners --------------------------------------------------- */
.partners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.partner-card {
  position: relative; overflow: hidden;
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.partner-card > p:last-of-type {
  flex: 1;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: hsla(42, 40%, 70%, 0.45); }
.partner-card .partner-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: -36px -32px 28px;
  overflow: hidden;
  background: linear-gradient(140deg, hsl(210, 50%, 22%) 0%, hsl(210, 60%, 14%) 100%);
  display: grid; place-items: center;
}
.partner-card .partner-photo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, hsla(42, 60%, 70%, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 70%, hsla(210, 70%, 55%, 0.18), transparent 60%);
}
.partner-card .partner-photo::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
}
.partner-card .partner-photo .logo-img {
  position: relative; z-index: 2;
  max-width: 65%;
  max-height: 55%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px hsla(210, 80%, 4%, 0.4));
  transition: transform var(--t-med) var(--ease);
}
.partner-card:hover .partner-photo .logo-img {
  transform: scale(1.04);
}
.partner-card .partner-photo .logo-wordmark {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, hsl(40, 40%, 96%) 0%, hsl(42, 55%, 75%) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px hsla(210, 80%, 4%, 0.4));
  transition: transform var(--t-med) var(--ease);
}
.partner-card .partner-photo .logo-wordmark em {
  font-style: italic;
  background: linear-gradient(135deg, hsl(42, 70%, 70%), hsl(42, 60%, 55%));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-card:hover .partner-photo .logo-wordmark { transform: scale(1.04); }
.partner-card .badge {
  display: inline-flex; padding: 0;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent; color: var(--steel-deep);
  border: none; font-weight: 600;
}
.partner-card h3 { margin-top: 22px; }
.partner-card .sub {
  margin-top: 6px; font-size: 0.95rem; color: var(--gold-deep);
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
}
.partner-card p { margin-top: 18px; font-size: 0.98rem; line-height: 1.65; }
.partner-card .view-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  align-self: flex-start;
  text-decoration: none;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.partner-card .view-more .arrow {
  color: var(--navy-deep);
  transition: transform var(--t-med) var(--ease);
}
.partner-card:hover .view-more {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.partner-card:hover .view-more .arrow {
  color: var(--gold-deep);
}
.partner-card:hover .view-more .arrow {
  transform: translateX(4px);
}

/* Partners mobile carousel */
@media (max-width: 760px) {
  .partners-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 14px 4px;
    margin-left: -14px;
    margin-right: -14px;
  }
  .partners-grid::-webkit-scrollbar { display: none; }
  .partner-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 440px;
    scroll-snap-align: center;
  }
}

/* Dots indicator for partners carousel */
.partners-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.partners-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.partners-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .partners-dots { display: flex; }
}

/* ---------- Resources -------------------------------------------------- */
.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 760px) {
  .resources-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 14px 4px;
    margin-left: -14px;
    margin-right: -14px;
    max-width: none;
  }
  .resources-grid::-webkit-scrollbar { display: none; }
  .resource-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 440px;
    scroll-snap-align: center;
  }
  .resource-card .body-inner { padding: 22px 22px 24px; }
  .resource-card h3 { font-size: 1.1rem; }
  .resource-card p { font-size: 0.95rem; }
}

/* Dots indicator for resources carousel */
.resources-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.resources-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.resources-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .resources-dots { display: flex; }
}
.resource-card {
  position: relative;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  overflow: hidden;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: hsla(42, 40%, 70%, 0.4); }
.resource-card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.resource-card .tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.resource-card h3 { margin-top: 18px; font-size: 1.2rem; line-height: 1.3; }
.resource-card p { margin-top: 14px; font-size: 0.96rem; line-height: 1.6; flex: 1; }
.resource-card .read {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--navy-deep);
}
.resource-card .read .arrow { transition: transform var(--t-med) var(--ease); }
.resource-card:hover .read { color: var(--gold-deep); }
.resource-card:hover .read .arrow { transform: translateX(4px); }

/* ---------- Forms (Growth Audit) -------------------------------------- */
.audit-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.audit-form {
  padding: 48px 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 80px -30px hsla(210, 70%, 14%, 0.32),
    0 16px 36px -12px hsla(210, 70%, 14%, 0.18),
    inset 0 1px 0 hsla(0,0%,100%,0.95);
  position: relative; overflow: hidden;
}
.audit-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
}
.field { margin-bottom: 24px; }
.field label {
  display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--navy-deep); margin-bottom: 10px;
}
.field label .req { color: var(--gold-deep); }
.field input, .field textarea {
  width: 100%;
  padding: 16px 20px;
  font: inherit; font-size: 15px;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-subtle); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 4px hsla(42, 60%, 60%, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.form-submit { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
.form-note { margin-top: 14px; font-size: 12px; color: var(--fg-subtle); text-align: center; }

.audit-process { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.audit-step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.audit-step:hover { transform: translateX(4px); border-color: hsla(42, 40%, 70%, 0.4); }
.audit-step .n {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, hsla(42, 65%, 92%, 1), hsla(42, 60%, 80%, 1));
  border: 1px solid hsla(42, 50%, 75%, 0.7);
  color: var(--gold-deep);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  box-shadow: 0 6px 14px -6px hsla(42, 60%, 50%, 0.25);
}
.audit-step h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--navy-deep); }
.audit-step p { margin-top: 6px; font-size: 0.96rem; line-height: 1.6; }

/* Audit process mobile carousel */
@media (max-width: 760px) {
  .audit-process {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 10px;
    padding: 6px 4px 4px;
    margin: 32px 0 0;
    box-sizing: border-box;
    width: 100%;
  }
  .audit-process::-webkit-scrollbar { display: none; }
  .audit-step {
    flex: 0 0 calc(100% - 32px);
    max-width: 300px;
    min-width: 0;
    scroll-snap-align: center;
    padding: 16px;
    gap: 12px;
    box-sizing: border-box;
  }
  .audit-step:hover { transform: none; }
  .audit-step > div:last-child { min-width: 0; flex: 1; }
  .audit-step h4 { font-size: 1.05rem; }
  .audit-step p { font-size: 0.88rem; }
  .audit-step .n { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
}

/* Dots indicator for audit-process carousel */
.audit-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.audit-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(210, 30%, 50%, 0.25);
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  cursor: pointer;
}
.audit-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 760px) {
  .audit-dots { display: flex; }
}

.disclaimer {
  margin-top: 32px;
  padding: 24px 28px;
  background: hsla(42, 50%, 95%, 0.6);
  border: 1px solid hsla(42, 50%, 80%, 0.6);
  border-radius: var(--radius);
  display: flex; gap: 16px; align-items: flex-start;
}
.disclaimer .ico { color: var(--gold-deep); flex-shrink: 0; }
.disclaimer strong { color: var(--navy-deep); font-weight: 600; }
.disclaimer p { font-size: 0.95rem; line-height: 1.6; margin-top: 4px; }

/* ---------- Article pages --------------------------------------------- */
.article-meta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.article-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}
section.page-hero .article-hero-image {
  position: relative;
  margin-top: 56px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-width: 1100px;
  box-shadow:
    0 36px 64px -28px hsla(210, 70%, 4%, 0.55),
    0 14px 30px -12px hsla(210, 70%, 4%, 0.32);
}
@media (max-width: 760px) {
  section.page-hero .article-hero-image { margin-top: 36px !important; }
}
.article-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsla(210, 80%, 6%, 0.4));
  pointer-events: none;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--fg);
  margin-bottom: 24px;
}
.article-body p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--navy-deep);
  font-weight: 400;
}
.article-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 48px 0 18px;
  color: var(--navy-deep);
}
.article-body h2 em { font-style: italic; color: var(--gold-deep); }
.article-body ul {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.article-body ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg);
}
.article-body ul li::before {
  content: "";
  position: absolute; left: 0; top: 19px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}
.article-body .pullquote {
  margin: 48px 0;
  padding: 30px 36px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--navy-deep);
  background: linear-gradient(90deg, hsl(40, 45%, 98%), transparent);
}
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { margin-top: 48px; margin-bottom: 16px; font-size: 1.65rem; }
.legal p, .legal li { font-size: 1rem; line-height: 1.75; color: var(--fg); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 10px; }

/* ---------- Hero (editorial centered) --------------------------------- */
.hero-editorial {
  position: relative;
  padding: clamp(150px, 18vw, 220px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ivory);
}
.hero-editorial::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 18% 22%, hsla(42, 60%, 60%, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 82% 28%, hsla(207, 60%, 50%, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, hsla(42, 70%, 60%, 0.10), transparent 60%);
}
.hero-editorial::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
}
.hero-editorial .container { position: relative; z-index: 1; }

.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92vw; height: 92vw;
  max-width: 1100px; max-height: 1100px;
  pointer-events: none;
  z-index: 0;
}
.hero-rings .ring {
  position: absolute; inset: 0;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 50%;
}
.hero-rings .ring.r2 { inset: 12%; border-style: dashed; border-color: hsla(42, 60%, 70%, 0.18); animation: spin 80s linear infinite; }
.hero-rings .ring.r3 { inset: 26%; border-color: hsla(0, 0%, 100%, 0.07); }
.hero-rings .ring.r4 { inset: 40%; border-style: dashed; border-color: hsla(42, 60%, 70%, 0.26); animation: spin 120s linear infinite reverse; }
.hero-rings .ring::before {
  content: ""; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px hsla(42, 70%, 60%, 0.6);
}
.hero-rings .ring.r3::before { background: var(--steel); top: auto; bottom: -4px; box-shadow: 0 0 10px hsla(210, 60%, 50%, 0.5); }
.hero-rings .ring.r1, .hero-rings .ring.r3 { animation: none; }

.hero-editorial .hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero-editorial .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}
.hero-editorial .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-editorial .eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-editorial h1 {
  margin-top: 28px;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero-editorial h1 .em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}
.hero-editorial h1 .stroke {
  display: inline-block;
  position: relative;
}
.hero-editorial h1 .stroke::after {
  content: ""; position: absolute; left: 6%; right: 6%; bottom: 0.05em;
  height: 0.32em;
  background: linear-gradient(90deg, transparent, hsla(42, 70%, 60%, 0.32), transparent);
  z-index: -1;
  border-radius: 2px;
}
.hero-editorial .hero-lede {
  margin: 32px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: hsla(0, 0%, 100%, 0.78);
  max-width: 62ch;
}
.hero-editorial .hero-cta {
  margin-top: 44px;
  display: inline-flex;
  flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.hero-editorial .btn-ghost {
  color: var(--ivory);
  border-color: hsla(0, 0%, 100%, 0.22);
  background: hsla(0, 0%, 100%, 0.02);
  backdrop-filter: blur(4px);
}
.hero-editorial .btn-ghost:hover {
  background: var(--ivory);
  color: var(--navy-deep);
  border-color: var(--ivory);
}

.hero-divider {
  position: relative;
  margin: 64px auto 0;
  width: 100%; max-width: 720px;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.18) 50%, transparent);
}
.hero-divider::before, .hero-divider::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
}
.hero-divider::before {
  left: calc(50% - 4px); background: var(--gold); transform: translate(-50%, -50%);
  box-shadow: 0 0 12px hsla(42, 70%, 60%, 0.6);
}
.hero-divider::after { display: none; }

.hero-stats {
  margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px;
  position: relative;
}
.hero-stat {
  text-align: center;
  padding: 16px 28px;
  position: relative;
  background: hsla(0, 0%, 100%, 0.04);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

/* Mobile/tablet: horizontal swipe carousel for hero-stats */
@media (max-width: 900px) {
  .hero-stats {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 4px 22px 18px;
    margin-left: -22px;
    margin-right: -22px;
    margin-top: 40px;
    max-width: none;
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .hero-stat {
    flex: 0 0 78%;
    max-width: 320px;
    min-width: 240px;
    scroll-snap-align: center;
  }
  .hero-stat .num { white-space: nowrap; }
}
@media (max-width: 480px) {
  .hero-stat { flex-basis: 86%; }
}
.hero-stat:hover {
  background: hsla(0, 0%, 100%, 0.07);
  border-color: hsla(42, 50%, 60%, 0.4);
  transform: translateY(-2px);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--ivory); line-height: 1.1;
  font-weight: 500;
  text-shadow: 0 2px 12px hsla(210, 90%, 4%, 0.4);
  white-space: nowrap;
}
.hero-stat .num em { color: var(--gold-light); font-style: italic; }
.hero-stat .label {
  display: block; margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.82);
  font-weight: 500;
}

.hero-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero-strip { padding: 0; }

/* Standalone marquee section */
.marquee-section {
  position: relative;
  padding: 56px 0;
  background: var(--card);
  overflow: hidden;
}
.marquee-section .hero-strip-item .label {
  color: var(--ivory);
}
.hero-strip {
  display: flex; gap: 14px;
  padding: 8px 0;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.hero-strip-item {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 420px);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-2);
}
.hero-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.hero-strip-item:hover img { transform: scale(1.08); }
.hero-strip-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.4) 100%);
}
.hero-strip-item .label {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  color: var(--ivory);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-marquee:hover .hero-strip { animation-play-state: paused; }

.hero-bottom-spacer { height: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-strip, .hero-rings .ring { animation: none !important; }
}

/* ---------- Photography / media ---------------------------------------- */
.media {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-blue);
}
.media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.media:hover img { transform: scale(1.04); }
.media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, hsla(210, 60%, 12%, 0.22) 100%);
  pointer-events: none;
}

/* Hero photo (portrait, dominant) */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3), 0 0 0 1px hsla(210, 30%, 50%, 0.1);
  background: linear-gradient(135deg, var(--steel-deep), var(--navy-deep));
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 8s var(--ease);
}
.hero-photo:hover img { transform: scale(1.06); }
.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, hsla(210, 80%, 22%, 0.55) 0%, hsla(210, 60%, 30%, 0.1) 45%, transparent 70%),
    linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.55) 100%);
  pointer-events: none;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(to right, hsla(0,0%,100%,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(0,0%,100%,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-floating {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: hsla(0,0%,100%,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid hsla(210, 30%, 80%, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3);
  font-size: 13px;
}
.hero-floating.tl { top: 28px; left: -18px; }
.hero-floating.br { bottom: 32px; right: -18px; }
.hero-floating .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0.45);
  animation: pulse 2s var(--ease) infinite;
}
.hero-floating strong { color: var(--navy-deep); font-weight: 600; font-size: 13px; }
.hero-floating span.small { display: block; color: var(--fg-subtle); font-size: 11px; margin-top: 2px; }

/* Story photo (about page) */
.story-photo {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.35) 100%);
}
.story-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 1;
  padding: 6px 12px;
  background: hsla(210, 70%, 12%, 0.6);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.story-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Outcome thumbnail */
.outcome .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--bg-blue);
}
.outcome .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.outcome:hover .thumb img { transform: scale(1.06); }
.outcome .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, hsla(210, 70%, 12%, 0.45) 100%);
}

/* Resource card cover */
.resource-card { padding: 0; overflow: hidden; }
.resource-card .cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel-deep), var(--navy-deep));
}
.resource-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.resource-card:hover .cover img { transform: scale(1.06); }
.resource-card .cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, hsla(210, 70%, 12%, 0.05) 0%, hsla(210, 70%, 12%, 0.5) 100%);
}
.resource-card .cover .tag {
  position: absolute; left: 18px; bottom: 14px; z-index: 1;
  color: var(--ivory);
  padding: 6px 12px;
  background: hsla(210, 70%, 12%, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0,0%,100%,0.15);
}
.resource-card .cover .tag::before { background: var(--gold); }
.resource-card .body-inner { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.resource-card .body-inner h3 { margin-top: 0; }

/* Animated globe (Global Focus) */
.globe-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  display: grid; place-items: center;
}
.globe-stage::before, .globe-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed hsla(210, 40%, 50%, 0.22);
  pointer-events: none;
}
.globe-stage::before { inset: 0; animation: spin 60s linear infinite; }
.globe-stage::after { inset: 12%; animation: spin 90s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.globe {
  position: relative;
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, hsla(210, 60%, 60%, 0.65), transparent 55%),
    radial-gradient(circle at 70% 75%, hsla(210, 80%, 14%, 0.65), transparent 60%),
    linear-gradient(140deg, hsl(210, 60%, 32%), hsl(210, 70%, 14%));
  box-shadow:
    inset 0 0 60px hsla(210, 80%, 6%, 0.6),
    inset -20px -20px 80px hsla(210, 70%, 6%, 0.5),
    inset 30px 30px 60px hsla(210, 60%, 50%, 0.25),
    0 30px 60px -20px hsla(210, 80%, 10%, 0.55);
  overflow: hidden;
}
.globe::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(ellipse at 28% 22%, hsla(0,0%,100%,0.35), transparent 35%),
    radial-gradient(circle at 25% 20%, hsla(0,0%,100%,0.18), transparent 30%);
  pointer-events: none;
}
.globe::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  box-shadow: 0 0 60px 6px hsla(210, 70%, 50%, 0.25);
  pointer-events: none;
}
.globe-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: globeRotate 30s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.globe-svg .lon { stroke: hsla(42, 70%, 75%, 0.32); stroke-width: 0.5; fill: none; }
.globe-svg .lat { stroke: hsla(42, 70%, 75%, 0.22); stroke-width: 0.5; fill: none; }
.globe-svg .lon-bold { stroke: hsla(42, 70%, 80%, 0.55); stroke-width: 0.7; fill: none; }

.globe-stars {
  position: absolute; inset: -8%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, hsla(42, 80%, 80%, 0.5), transparent),
    radial-gradient(1px 1px at 80% 20%, hsla(0,0%,100%,0.4), transparent),
    radial-gradient(1px 1px at 60% 80%, hsla(42, 80%, 80%, 0.4), transparent),
    radial-gradient(1px 1px at 30% 70%, hsla(0,0%,100%,0.3), transparent),
    radial-gradient(1px 1px at 90% 60%, hsla(42, 80%, 80%, 0.45), transparent),
    radial-gradient(1px 1px at 10% 90%, hsla(0,0%,100%,0.4), transparent),
    radial-gradient(1px 1px at 50% 10%, hsla(0,0%,100%,0.35), transparent);
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.globe-pins {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
}
.globe-pin {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: hsla(0,0%,100%,0.96);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--navy-deep);
  border: 1px solid hsla(210, 30%, 80%, 0.6);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  white-space: nowrap;
}
.globe-pin .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0.55);
  animation: pulse 2s var(--ease) infinite;
}
.globe-pin.us { top: 22%; left: -2%; }
.globe-pin.uk { top: 38%; right: 0%; }
.globe-pin.eu { bottom: 18%; left: 14%; }
.globe-pin.us .dot { animation-delay: 0s; }
.globe-pin.uk .dot { animation-delay: 0.6s; }
.globe-pin.eu .dot { animation-delay: 1.2s; }

.globe-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 86%; aspect-ratio: 1/1;
  transform: translate(-50%, -50%) rotateX(72deg);
  border-radius: 50%;
  border: 1px solid hsla(42, 70%, 65%, 0.35);
  animation: orbitSpin 14s linear infinite;
  pointer-events: none;
}
.globe-orbit::after {
  content: ""; position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px hsla(42, 70%, 60%, 0.7);
}
@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotateX(72deg) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .globe-svg, .globe-stage::before, .globe-stage::after, .globe-orbit, .globe-stars { animation: none !important; }
}

/* Global focus — photo variant */
.global-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3), 0 0 0 1px hsla(210, 30%, 50%, 0.1);
}
.global-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s var(--ease); }
.global-photo:hover img { transform: scale(1.05); }
.global-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, hsla(210, 80%, 14%, 0.35) 0%, transparent 35%),
    linear-gradient(180deg, transparent 50%, hsla(210, 70%, 12%, 0.55) 100%);
}
.global-photo .pins {
  position: absolute; inset: 0; z-index: 2;
}
.global-photo .pin {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: hsla(0,0%,100%,0.95);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--navy-deep);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
}
.global-photo .pin .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 hsla(42, 60%, 60%, 0.5);
  animation: pulse 2s var(--ease) infinite;
}
.global-photo .pin.us { top: 18%; left: 12%; }
.global-photo .pin.uk { top: 30%; right: 14%; animation-delay: 0.4s; }
.global-photo .pin.eu { bottom: 22%; left: 26%; animation-delay: 0.8s; }

/* Marquee strip of small photos */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.photo-strip .media { aspect-ratio: 4 / 5; }
@media (max-width: 760px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Blue-tinted section background variant */
.section-blue {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, hsla(210, 60%, 80%, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, hsla(207, 50%, 70%, 0.3), transparent 60%),
    linear-gradient(180deg, hsl(210, 45%, 96%), hsl(210, 40%, 94%));
}

/* ---------- Premium interactions (WOW layer) -------------------------- */

/* Scroll progress bar at top */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--steel) 0%, var(--gold) 50%, var(--steel) 100%);
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 12px hsla(210, 60%, 50%, 0.5);
  transition: width 80ms linear;
}

/* Cursor spotlight in hero — follows mouse */
.hero-editorial { --mx: 50%; --my: 50%; }
.hero-spotlight {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx) var(--my),
    hsla(210, 70%, 80%, 0.35),
    hsla(210, 60%, 70%, 0.18) 30%,
    transparent 60%
  );
  transition: background 200ms var(--ease);
  mix-blend-mode: normal;
}

/* 3D tilt cards — applied via JS */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  will-change: transform;
}
[data-tilt] > * {
  transform: translateZ(0);
}

/* Shine sweep on premium cards (cards animate a diagonal sheen on hover) */
.service-card, .outcome, .partner-card, .value-card, .resource-card {
  position: relative;
}
.service-card .sheen,
.outcome .sheen,
.partner-card .sheen,
.value-card .sheen,
.resource-card .sheen {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    hsla(0,0%,100%,0.55) 50%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-110%);
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  z-index: 2;
  mix-blend-mode: overlay;
}
.service-card:hover .sheen,
.outcome:hover .sheen,
.partner-card:hover .sheen,
.value-card:hover .sheen,
.resource-card:hover .sheen {
  animation: sheenSweep 1100ms var(--ease-out) forwards;
}
@keyframes sheenSweep {
  0%   { transform: translateX(-110%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* Magnetic button — JS sets --mag-x and --mag-y */
.btn[data-magnet] {
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
  transition: transform 220ms var(--ease);
}

/* Ambient float on key icons */
.float-y { animation: floatY 6s ease-in-out infinite; }
.float-y-2 { animation: floatY 7s ease-in-out infinite -2s; }
.float-y-3 { animation: floatY 8s ease-in-out infinite -4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Subtle breathing pulse — for circular elements */
.breathe { animation: breathe 4s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Premium card upgrade: deeper shadows + animated border glow */
.service-card, .outcome, .partner-card, .value-card, .resource-card {
  background-clip: padding-box;
  border-radius: var(--radius-lg);
}
.service-card::before,
.outcome::before,
.partner-card::before,
.value-card::before,
.resource-card::before {
  border-radius: var(--radius-lg);
}
.service-card:hover, .outcome:hover, .partner-card:hover, .value-card:hover, .resource-card:hover {
  box-shadow:
    0 30px 60px -28px hsla(210, 60%, 18%, 0.25),
    0 12px 28px -12px hsla(210, 60%, 18%, 0.18),
    inset 0 1px 0 hsla(0,0%,100%,0.6);
}

/* Reveal sweep on scroll for "feature" elements */
.reveal-scale {
  opacity: 0; transform: scale(0.96) translateY(20px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal-scale.in { opacity: 1; transform: scale(1) translateY(0); }

/* Floating particle layer for dark sections */
.particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.particles span {
  position: absolute; display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: hsla(210, 70%, 75%, 0.5);
  filter: blur(0.5px);
  animation: drift 18s linear infinite;
}
.particles span:nth-child(odd) {
  background: hsla(42, 60%, 70%, 0.4);
  animation-duration: 22s;
}
.particles span:nth-child(3n) {
  width: 2px; height: 2px;
  animation-duration: 28s;
}
.particles span:nth-child(1) { left: 8%;  top: 10%; animation-delay: -2s; }
.particles span:nth-child(2) { left: 22%; top: 70%; animation-delay: -6s; }
.particles span:nth-child(3) { left: 38%; top: 28%; animation-delay: -10s; }
.particles span:nth-child(4) { left: 54%; top: 85%; animation-delay: -14s; }
.particles span:nth-child(5) { left: 68%; top: 16%; animation-delay: -3s; }
.particles span:nth-child(6) { left: 82%; top: 64%; animation-delay: -8s; }
.particles span:nth-child(7) { left: 14%; top: 42%; animation-delay: -12s; }
.particles span:nth-child(8) { left: 90%; top: 36%; animation-delay: -16s; }
.particles span:nth-child(9) { left: 46%; top: 52%; animation-delay: -4s; }
.particles span:nth-child(10){ left: 30%; top: 8%;  animation-delay: -18s; }
@keyframes drift {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(40px, -120px); opacity: 0; }
}

/* Mesh gradient background (animated, used in CTA / hero) */
.mesh-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.mesh-bg::before, .mesh-bg::after {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: meshFloat 14s ease-in-out infinite;
}
.mesh-bg::before {
  background: radial-gradient(circle, hsla(210, 80%, 60%, 0.4), transparent 60%);
  top: -20%; left: -10%;
}
.mesh-bg::after {
  background: radial-gradient(circle, hsla(42, 70%, 60%, 0.28), transparent 60%);
  bottom: -20%; right: -10%;
  animation-delay: -7s;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.96); }
}

/* Number counter — ensures consistent size during animation */
[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Hero title — letter wrap animation on load */
.hero-editorial h1 {
  position: relative;
}
.hero-editorial .title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: titleRise 900ms var(--ease-out) forwards;
}
.hero-editorial .title-word:nth-child(1) { animation-delay: 80ms; }
.hero-editorial .title-word:nth-child(2) { animation-delay: 200ms; }
.hero-editorial .title-word:nth-child(3) { animation-delay: 320ms; }
.hero-editorial .title-word:nth-child(4) { animation-delay: 440ms; }
@keyframes titleRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Underline link with animated draw */
.btn-link {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .float-y, .float-y-2, .float-y-3, .breathe,
  .particles span, .mesh-bg::before, .mesh-bg::after,
  .hero-editorial .title-word, .service-card .sheen, .outcome .sheen,
  .partner-card .sheen, .value-card .sheen, .resource-card .sheen {
    animation: none !important;
  }
  .hero-editorial .title-word { opacity: 1; transform: none; }
}

/* ---------- Reveal animations ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }
.reveal[data-delay="5"] { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid, .system-inner, .global-grid, .why-grid, .editorial-grid, .audit-grid {
    grid-template-columns: 1fr; gap: 56px;
  }
  .services-grid, .outcomes-grid, .partners-grid, .resources-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-grid::after { display: none; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 760px) {
  .container { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .services-grid, .outcomes-grid, .partners-grid, .resources-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .process-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .hero-meta-item .num { font-size: 1.9rem; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 8px; }
  .system-loop .node { width: 110px; padding: 12px 10px; }
  .system-loop .center { width: 110px; height: 110px; font-size: 0.9rem; padding: 14px; }
  .audit-grid {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .audit-grid > .reveal {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }
  .audit-grid > .reveal:first-of-type { text-align: center; }
  .audit-grid .reveal h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .audit-form {
    padding: 22px 18px;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    box-sizing: border-box;
    box-shadow:
      0 14px 30px -18px hsla(210, 70%, 14%, 0.22),
      inset 0 1px 0 hsla(0,0%,100%,0.95);
    border-radius: var(--radius-lg);
  }
  .audit-form .field input,
  .audit-form .field textarea {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }
  .audit-form h3 { font-size: 1.4rem !important; }
  .audit-dots {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .global-pin.us { left: 8%; }
  .global-pin.uk { left: 50%; }
  .global-pin.eu { right: 4%; }
}
