/* ============================================================
   PAUL INVESTMENT — Design System v4
   Luxury Financial. Cormorant + Montserrat. Navy Blue & Gold.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  /* Dark surfaces — Obsidian pur */
  --bg-0:  #080808;
  --bg-1:  #101010;
  --bg-2:  #181818;
  --bg-3:  #202020;
  --bg-4:  #282828;

  /* Light surfaces (cream sections) */
  --light-0: #FAF7F2;
  --light-1: #F4EFE6;
  --light-2: #EDE5D8;

  /* Champagne gold */
  --gold:        #D4AF6E;
  --gold-bright: #E0BF7E;
  --gold-muted:  #8B6A2E;
  --gold-dim:    rgba(212,175,110,.09);
  --gold-border: rgba(212,175,110,.24);
  --gold-glow:   rgba(212,175,110,.18);

  /* Text */
  --t0: #F5F0E8;
  --t1: #8A8480;
  --t2: #5C5650;

  /* Text — light sections */
  --lt0: #0E0E0E;
  --lt1: #555148;
  --lt2: #9A9590;

  /* Borders */
  --b0: rgba(255,255,255,.09);
  --b1: rgba(255,255,255,.04);
  --lb0: rgba(0,0,0,.09);
  --lb1: rgba(0,0,0,.04);

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Montserrat', system-ui, sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;

  /* Type scale */
  --fs-xs:   .6875rem;   /* 11px */
  --fs-sm:   .8125rem;   /* 13px */
  --fs-base: .9375rem;   /* 15px */
  --fs-lg:   1.0625rem;  /* 17px */
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  2rem;
  --fs-4xl:  clamp(2.25rem, 4vw, 3rem);
  --fs-hero: clamp(3rem, 6.5vw, 5.5rem);

  /* Layout */
  --max-w:  1320px;
  --pad:    clamp(1.25rem, 5vw, 2.5rem);
  --nav-h:  90px;

  /* Radius */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 16px;

  /* Transitions */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --fast: 140ms;
  --base: 260ms;
  --slow: 480ms;

  /* Shadows */
  --s-card: 0 1px 2px rgba(0,0,0,.6), 0 12px 40px rgba(0,0,0,.4);
  --s-gold: 0 0 60px rgba(226,196,122,.16);
  --s-lift: 0 20px 60px rgba(0,0,0,.5);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; }
@keyframes body-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--t0);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: body-in .4s ease both;
}
img,video { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea,select { font-family:inherit; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: var(--ff-display);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 400;
  color: var(--t0);
}
h1 { font-size: var(--fs-hero); font-weight: 300; letter-spacing: -.03em; }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-xl); font-weight: 500; }
p  { color: var(--t1); line-height: 1.75; font-size: var(--fs-base); }

.display-serif { font-family: var(--ff-display); }
em { font-style: italic; color: var(--gold); }

/* Light section text overrides */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--lt0); }
.section-light p   { color: var(--lt1); }

/* Label / tag */
.label {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Section tag */
.stag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.stag::before { content: '—'; margin-right: .1rem; opacity: .5; }

.section-light .stag { color: var(--gold-muted); }

/* Divider */
.rule { height: 1px; background: var(--b0); border: none; margin-block: 3rem; }
.rule-light { height: 1px; background: var(--lb0); border: none; margin-block: 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: var(--r-sm);
  padding: .7rem 1.5rem;
  transition: all var(--base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: #0F0F0F;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: var(--s-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--t0);
  border: 1px solid var(--b0);
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-outline-light {
  background: transparent;
  color: var(--lt0);
  border: 1px solid var(--lb0);
}
.btn-outline-light:hover {
  border-color: var(--gold-border);
  color: var(--gold-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--t1);
  padding-inline: 0;
  gap: .4rem;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform var(--base) var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ── Navigation ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--base), border-color var(--base), backdrop-filter var(--base);
}
#nav.scrolled {
  background: rgba(8,8,8,.88);
  border-bottom: 1px solid var(--b0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo img { height: 60px; width: auto; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--t1);
  letter-spacing: .02em;
  transition: color var(--fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--base) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--t0); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Programs/Services dropdown */
.nav-has-dd { position: relative; }
.nav-dd-btn {
  display: flex; align-items: center; gap: .3rem;
  font-size: var(--fs-sm); font-weight: 400; color: var(--t1);
  letter-spacing: .02em; background: none; border: none; cursor: pointer;
  padding: 0 0 2px; font-family: inherit; position: relative;
  transition: color var(--fast);
}
.nav-dd-btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--base) var(--ease);
}
.nav-has-dd:hover .nav-dd-btn,
.nav-has-dd:focus-within .nav-dd-btn { color: var(--t0); }
.nav-has-dd:hover .nav-dd-btn::after,
.nav-has-dd:focus-within .nav-dd-btn::after { width: 100%; }
.nav-prog-dd {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-2); border: 1px solid var(--b0);
  border-radius: var(--r-md); min-width: 200px; overflow: hidden;
  opacity: 0; visibility: hidden;
  transition: all var(--base) var(--ease); z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nav-has-dd:hover .nav-prog-dd,
.nav-has-dd:focus-within .nav-prog-dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-prog-dd a {
  display: block; padding: .65rem 1rem; font-size: var(--fs-sm); color: var(--t1);
  border-bottom: 1px solid var(--b0);
  transition: background var(--fast), color var(--fast);
}
.nav-prog-dd a:last-child { border-bottom: none; }
.nav-prog-dd a:hover { background: var(--gold-dim); color: var(--t0); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

/* Lang switcher */
.lang-sw { position: relative; }
.lang-sw-btn {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--t2);
  padding: .35rem .65rem;
  border: 1px solid var(--b0); border-radius: var(--r-sm);
  transition: all var(--fast);
}
.lang-sw-btn:hover { color: var(--gold); border-color: var(--gold-border); }
.lang-sw-btn svg { width: 11px; height: 11px; }
.lang-dd {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-2); border: 1px solid var(--b0);
  border-radius: var(--r-md); min-width: 140px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all var(--base) var(--ease); z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.lang-sw:hover .lang-dd,
.lang-sw:focus-within .lang-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dd a {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem 1rem; font-size: var(--fs-sm); color: var(--t1);
  transition: background var(--fast), color var(--fast);
}
.lang-dd a:hover { background: var(--gold-dim); color: var(--t0); }
.lang-dd a.active { color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 4px; }
.hamburger span {
  display: block; width: 20px; height: 1px;
  background: var(--t0); transition: all var(--base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--bg-0); z-index: 999;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 2rem; opacity: 0; pointer-events: none;
  transition: opacity var(--base);
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--ff-display); font-size: 2.25rem; font-weight: 300;
  color: var(--t1); letter-spacing: -.02em;
  transition: color var(--fast);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-group { text-align: center; }
.mobile-nav-toggle {
  font-family: var(--ff-display); font-size: 2.25rem; font-weight: 300;
  color: var(--t1); letter-spacing: -.02em;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color var(--fast);
}
.mobile-nav-toggle:hover { color: var(--gold); }
.mobile-nav-toggle svg { transition: transform .3s var(--ease); flex-shrink: 0; }
.mobile-nav-group.open .mobile-nav-toggle { color: var(--gold); }
.mobile-nav-group.open .mobile-nav-toggle svg { transform: rotate(180deg); }
.mobile-nav-sub {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.mobile-nav-group.open .mobile-nav-sub { max-height: 280px; padding-top: .75rem; }
.mobile-nav-sub a { font-size: 1.375rem; color: var(--t2); }
.mobile-nav-sub a:hover { color: var(--gold); }
.mobile-nav-lang { display: flex; gap: 1.5rem; margin-top: .5rem; }
.mobile-nav-lang a {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase;
}
.mobile-nav-lang a.active { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
  background: var(--bg-0);
}

/* Subtle diagonal line grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 50% 60% at 20% 50%, black 10%, transparent 80%);
}

/* Gold gradient accent — top right */
@keyframes glow-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .55; }
}
.hero-accent {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212,175,110,.035) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr .85fr;
  gap: 5rem; align-items: center;
  padding-block: 6rem;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 32px; height: 1px; background: var(--gold); opacity: .6;
}
.hero-eyebrow-text {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
}

.hero-h1 { margin-bottom: 1.5rem; max-width: 680px; }
.hero-sub {
  font-size: var(--fs-lg); color: var(--t1); line-height: 1.7;
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3.5rem; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--b0);
}
.hero-proof-item { display: flex; flex-direction: column; gap: .2rem; }
.hero-proof-val {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 300;
  color: var(--t0); letter-spacing: -.02em; line-height: 1;
}
.hero-proof-lbl {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--t2); letter-spacing: .08em; text-transform: uppercase;
}

/* Hero right — performance panel */
.hero-right {
  display: flex; flex-direction: column;
}

.hero-perf-panel {
  background: var(--bg-1);
  border: 1px solid var(--b0);
  border-top: 2px solid var(--gold);
  padding: 2rem 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.75rem;
  position: relative; overflow: hidden;
}
.hero-perf-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,110,.07), transparent);
  pointer-events: none;
}

.hero-perf-head { display: flex; flex-direction: column; gap: .5rem; }
.hero-perf-label {
  font-family: var(--ff-mono); font-size: .6rem;
  color: var(--gold); letter-spacing: .12em; text-transform: uppercase; opacity: .7;
}
.hero-perf-big {
  font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
}
.hero-perf-sub { font-size: var(--fs-sm); color: var(--t2); }

.hero-perf-chart { display: flex; flex-direction: column; gap: .75rem; }

.hero-perf-foot {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--b0); padding-top: 1.25rem; gap: 1rem;
}
.hero-perf-stat { display: flex; flex-direction: column; gap: .3rem; }
.hero-perf-stat .k {
  font-family: var(--ff-mono); font-size: .58rem;
  color: var(--t2); letter-spacing: .08em; text-transform: uppercase;
}
.hero-perf-stat .v {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 300; color: var(--t0);
}

/* Floating stat cards */
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
/* ── Hero particles ── */
.hero-right { position: relative; align-self: stretch; min-height: 420px; }
.hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: .85;
  z-index: 0;
}
.hero-dash-card {
  position: relative; z-index: 1;
  background: rgba(13,13,13,.78);
  border: 1px solid rgba(212,175,110,.2);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 72px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,110,.05), 0 0 60px rgba(212,175,110,.07);
  animation: float-card 5s ease-in-out infinite;
}
.hdc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(212,175,110,.1);
}
.hdc-logo { height: 26px; width: auto; }
.hdc-live {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--ff-mono); font-size: .5rem;
  color: #22c55e; letter-spacing: .1em; text-transform: uppercase;
}
.hdc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 7px #22c55e;
  animation: blink-dot 1.8s ease-in-out infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.25} }
.hdc-price-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: .8rem;
}
.hdc-label {
  font-family: var(--ff-mono); font-size: .54rem;
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem;
}
.hdc-price-val {
  font-family: var(--ff-display); font-size: 2.1rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
}
.hdc-badge-pos {
  font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .05em;
  color: #22c55e; background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 6px; padding: .28rem .6rem; margin-top: .2rem;
}
.hdc-sparkline { width: 100%; display: block; margin-bottom: 1.1rem; }
.hdc-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(212,175,110,.1);
  border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.1rem;
}
.hdc-stat { background: rgba(13,13,13,.9); padding: .7rem 1rem; }
.hdc-stat-k {
  font-family: var(--ff-mono); font-size: .48rem;
  color: var(--t2); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .22rem;
}
.hdc-stat-v {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 300; color: var(--t0);
}
.hdc-pos { color: #22c55e; }
.hdc-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: .48rem;
  color: var(--t2); letter-spacing: .07em; text-transform: uppercase; margin-bottom: .4rem;
}
.hdc-bar-track {
  height: 4px; background: rgba(212,175,110,.1); border-radius: 999px; overflow: hidden;
}
.hdc-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, rgba(212,175,110,.4), var(--gold));
  border-radius: 999px;
  transition: width 2s cubic-bezier(.22,1,.36,1);
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-16px) rotate(.4deg); }
  66%       { transform: translateY(-8px) rotate(-.3deg); }
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.15); opacity: .9; }
}
/* ── Hero image scene ── */
.hero-img-scene {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 100%;
}
.hero-img-glow {
  position: absolute; width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(212,175,110,.22) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-img-wrap {
  position: relative; z-index: 1;
  animation: float-hero 5s ease-in-out infinite;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.45)) drop-shadow(0 0 30px rgba(212,175,110,.18));
}
.hero-img-main {
  width: 100%; max-width: 500px;
  border-radius: var(--r-xl);
  display: block;
}
/* Stat chips */
.hero-chip {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; gap: .18rem;
  background: rgba(15,15,15,.85);
  border: 1px solid rgba(212,175,110,.28);
  border-radius: var(--r-md);
  padding: .65rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.chip-val {
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.02em; line-height: 1;
}
.chip-lbl {
  font-family: var(--ff-mono); font-size: .52rem;
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase;
}
.hero-chip-1 { top: 8%; left: -2%; animation: float-card 4s ease-in-out infinite; }
.hero-chip-2 { top: 42%; right: -5%; animation: float-card 5s ease-in-out .7s infinite; }
.hero-chip-3 { bottom: 8%; left: 8%; animation: float-card 4.5s ease-in-out 1.3s infinite; }
.hero-float-cards {
  display: flex; flex-direction: column;
  gap: 1.25rem; padding: .5rem 0;
  height: 100%; justify-content: center;
}
.hero-float-card {
  background: var(--bg-1);
  border: 1px solid var(--b0);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 1.6rem 2rem;
  position: relative; overflow: hidden;
  animation: float-card 5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  transition: border-color var(--base);
}
.hero-float-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,110,.06), transparent);
  pointer-events: none;
}
.hero-float-card:nth-child(1) { align-self: flex-start; width: 82%; }
.hero-float-card:nth-child(2) { align-self: flex-end;   width: 82%; }
.hero-float-card:nth-child(3) { align-self: flex-start; width: 82%; }
.hfc-val {
  font-family: var(--ff-display); font-size: 2.6rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
  margin-bottom: .45rem;
}
.hfc-lbl {
  font-family: var(--ff-mono); font-size: .57rem;
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase;
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--t2); font-family: var(--ff-mono);
  font-size: var(--fs-xs); letter-spacing: .1em;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Ticker ── */
.ticker-wrap {
  display: flex; align-items: center;
  background: var(--bg-1);
  border-top: 1px solid var(--b0);
  border-bottom: 1px solid var(--b0);
  padding: .85rem 0; overflow: hidden;
}
.ticker-label {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); padding-inline: var(--pad);
  flex-shrink: 0; border-right: 1px solid var(--b0);
  padding-right: 1.5rem; white-space: nowrap;
}
.ticker {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 80px, black calc(100% - 80px), transparent);
}
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.ticker-item {
  display: flex; align-items: center; gap: .5rem;
  padding: 0 2rem; white-space: nowrap;
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2);
  border-right: 1px solid var(--b0);
}
.ticker-item .ti-val { color: var(--t1); font-weight: 500; }
.ticker-item .ti-pos { color: #4ade80; }

/* ── Program Tabs (services.html) ── */
.prog-tabs-wrap {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: var(--bg-1); border-bottom: 1px solid var(--b0);
}
.prog-tabs { display: grid; grid-template-columns: repeat(4,1fr); }
.prog-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: .15rem;
  padding: 1.25rem 1.75rem;
  background: none; border: none; border-right: 1px solid var(--b0);
  border-bottom: 3px solid transparent;
  cursor: pointer; text-align: left;
  transition: background var(--base), border-color var(--base), color var(--base);
}
.prog-tab:last-child { border-right: none; }
.prog-tab:hover { background: var(--gold-dim); }
.prog-tab.active { border-bottom-color: var(--gold); background: rgba(212,175,110,.07); }
.prog-tab-num {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); opacity: .55;
}
.prog-tab.active .prog-tab-num { opacity: 1; }
.prog-tab-name {
  font-size: var(--fs-sm); font-weight: 500; color: var(--t1); line-height: 1.2;
}
.prog-tab.active .prog-tab-name { color: var(--t0); }
.prog-tab-meta {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .06em;
  color: var(--gold); opacity: .45;
}
.prog-tab.active .prog-tab-meta { opacity: 1; }
.prog-panel { display: none; }
.prog-panel.active { display: block; }

/* ── Sections ── */
.section { padding-block: clamp(5rem,9vw,8rem); }
.section-dark { background: var(--bg-0); }
.section-mid  { background: var(--bg-1); border-top: 1px solid var(--b0); border-bottom: 1px solid var(--b0); }
.section-light {
  background: var(--light-0);
  color: var(--lt0);
}
.section-light p { color: var(--lt1); }

/* Section header */
.sh { margin-bottom: clamp(3rem,5vw,5rem); }
.sh h2 { margin-bottom: 1rem; }
.sh h2::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: .65rem; opacity: .7;
}
.sh p { max-width: 520px; }
.sh-center { text-align: center; }
.sh-center h2::before { margin-inline: auto; }
.sh-center p { margin-inline: auto; }

/* ── Stats row ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-radius: var(--r-lg); overflow: hidden;
}
.stat-item {
  padding: 2rem 1.75rem;
  transition: background var(--base);
}
.stat-item:hover { background: var(--gold-dim); }
.stat-v {
  font-family: var(--ff-display); font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.stat-l {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  letter-spacing: .08em; text-transform: uppercase; color: var(--t2);
}

/* Stats row light variant */
.stats-row-light {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--lb0); border-radius: var(--r-lg); overflow: hidden;
}
.stats-row-light .stat-item { border-right: 1px solid var(--lb0); }
.stats-row-light .stat-item:hover { background: rgba(0,0,0,.03); }
.stats-row-light .stat-v { color: var(--gold-muted); }
.stats-row-light .stat-l { color: var(--lt2); }

/* ── Service list ── */
.svc-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}
.svc-list { display: flex; flex-direction: column; }
.svc-item a {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--b0);
  transition: all var(--fast);
  position: relative;
}
.svc-item:first-child a { border-top: 1px solid var(--b0); }
.svc-item.active a,
.svc-item a:hover { padding-inline: .75rem; margin-inline: -.75rem; background: var(--gold-dim); }
.svc-item.active .svc-num,
.svc-item a:hover .svc-num { color: var(--gold); }
.svc-item.active .svc-arrow,
.svc-item a:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-num {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2);
  width: 2rem; flex-shrink: 0; transition: color var(--fast);
  letter-spacing: .06em;
}
.svc-body { flex: 1; min-width: 0; }
.svc-title { font-size: var(--fs-base); font-weight: 500; color: var(--t0); margin-bottom: .2rem; }
.svc-desc { font-size: var(--fs-sm); color: var(--t2); line-height: 1.5; }
.svc-key {
  display: flex; flex-direction: column; align-items: flex-end;
  margin-right: .5rem; flex-shrink: 0; text-align: right;
}
.svc-key-v {
  font-family: var(--ff-display); font-size: 1.35rem; font-weight: 300;
  color: var(--t2); letter-spacing: -.01em; line-height: 1;
  transition: color var(--fast);
}
.svc-key-l {
  font-family: var(--ff-mono); font-size: .52rem;
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase; opacity: .55;
}
.svc-item.active .svc-key-v,
.svc-item a:hover .svc-key-v { color: var(--gold); }
.svc-arrow {
  opacity: 0; transform: translateX(-6px);
  color: var(--gold); flex-shrink: 0;
  transition: all var(--base) var(--ease);
}
.svc-right { position: sticky; top: calc(var(--nav-h) + 2rem); }
.svc-card-detail {
  display: none; flex-direction: column;
  border: 1px solid var(--b0); border-top: 2px solid var(--gold);
  background: var(--bg-1);
}
.svc-card-detail.active { display: flex; }

.scd-tag { padding: 1.75rem 2rem .25rem; }
.scd-feat { padding: 1.25rem 2rem 1.75rem; }
.scd-feat-num {
  font-family: var(--ff-display); font-size: 4rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
  margin-bottom: .4rem;
}
.scd-feat-lbl {
  font-family: var(--ff-mono); font-size: .57rem;
  color: var(--t2); letter-spacing: .12em; text-transform: uppercase;
}
.scd-desc {
  font-size: var(--fs-sm); color: var(--t2); line-height: 1.75;
  padding: 0 2rem; margin-bottom: 1.25rem;
}
.scd-sep { height: 1px; background: var(--b0); margin: 0 2rem; }
.scd-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem; padding: 1.5rem 2rem; flex: 1;
}
.scd-cell { display: flex; flex-direction: column; gap: .3rem; }
.scd-k {
  font-family: var(--ff-mono); font-size: .56rem;
  color: var(--t2); letter-spacing: .08em; text-transform: uppercase;
}
.scd-v { font-size: var(--fs-sm); font-weight: 500; color: var(--t0); }
.scd-link {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 2rem 2rem; padding-top: 1.25rem; border-top: 1px solid var(--b0);
  font-family: var(--ff-mono); font-size: .58rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: gap var(--base);
}
.scd-link:hover { gap: 1rem; }

/* Keep for services.html */
.svc-specs { padding: 1.25rem 2rem; }
.svc-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 0; border-bottom: 1px solid var(--b0);
  font-size: var(--fs-sm);
}
.svc-spec-row:last-child { border-bottom: none; }
.svc-spec-row .k {
  color: var(--t2); font-family: var(--ff-mono);
  font-size: var(--fs-xs); letter-spacing: .06em; text-transform: uppercase;
}
.svc-spec-row .v { color: var(--t0); font-weight: 500; }
.svc-spec-row .v.gold { color: var(--gold); }

/* Mobile service cards */
.svc-cards-mobile { display: none; flex-direction: column; gap: 1px; background: var(--b0); border-radius: var(--r-lg); overflow: hidden; }
.svc-card-m { background: var(--bg-1); padding: 1.75rem; transition: background var(--base); }
.svc-card-m:hover { background: var(--bg-2); }
.svc-card-m-num { font-family:var(--ff-mono); font-size:var(--fs-xs); color:var(--gold); letter-spacing:.08em; margin-bottom:.5rem; }
.svc-card-m h3 { font-size: var(--fs-2xl); color: var(--t0); margin-bottom: .5rem; font-weight: 300; }
.svc-card-m p { font-size: var(--fs-sm); margin-bottom: 1rem; }
.svc-card-m-specs { display: flex; gap: 1.5rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--b0); }
.svc-card-m-spec .k { font-family:var(--ff-mono); font-size:var(--fs-xs); color:var(--t2); letter-spacing:.06em; text-transform:uppercase; display:block; margin-bottom:.2rem; }
.svc-card-m-spec .v { font-size: var(--fs-sm); color: var(--gold); font-weight: 600; }

/* ── Performance bars ── */
.perf-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch;
}
.perf-number {
  font-family: var(--ff-display); font-size: clamp(4.5rem,9vw,8rem);
  font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -.03em;
}
.perf-sub { font-size: var(--fs-sm); color: var(--t2); margin-top: .6rem; font-family: var(--ff-mono); letter-spacing: .06em; text-transform: uppercase; }

.bar-chart { margin-top: 2.5rem; }
.bar-row { display: grid; grid-template-columns: 68px 1fr 48px; gap: .75rem; align-items: center; margin-bottom: 1rem; }
.bar-yr { font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2); letter-spacing: .06em; }
.bar-track { height: 2px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s var(--ease);
}
.bar-fill.anim { transform: scaleX(1); }
.bar-val { font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold); text-align: right; }

.perf-legend { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.perf-leg-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-family: var(--ff-mono); font-size: .58rem;
  color: var(--t2); letter-spacing: .04em; line-height: 1.6;
}
.perf-leg-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: .3rem;
}
.perf-leg-note { opacity: .6; font-size: .55rem; }

.perf-quote {
  padding-top: 1.25rem; border-top: 1px solid var(--b0);
  margin-top: .25rem;
}
.perf-quote-text {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: var(--t0); line-height: 1.5; margin-bottom: .5rem;
}
.perf-quote-attr {
  display: block; font-family: var(--ff-mono); font-size: .58rem;
  color: var(--gold); letter-spacing: .08em; text-transform: uppercase; opacity: .7;
}

.perf-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--b0); border-radius: var(--r-lg); overflow: hidden; }
.metric {
  background: var(--bg-2); padding: 1.5rem;
  transition: background var(--base), transform var(--base);
}
.metric:hover { background: var(--bg-3); transform: translateY(-2px); }
.metric-v {
  font-family: var(--ff-display); font-size: 1.75rem; font-weight: 300;
  color: var(--t0); margin-bottom: .3rem; letter-spacing: -.02em;
}
.metric-l {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--t2); letter-spacing: .06em; text-transform: uppercase;
}

.perf-statlist {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--b0);
}
.perf-stat-row {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem; align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--b0);
}
.perf-stat-num {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.02em; line-height: 1;
}
.perf-stat-lbl {
  font-size: var(--fs-sm); color: var(--t2); line-height: 1.5;
}
.perf-footnote {
  font-family: var(--ff-mono); font-size: .57rem;
  color: var(--t2); letter-spacing: .04em;
  line-height: 1.7; margin-top: 1.5rem; opacity: .65;
}
.perf-pullquote {
  margin-top: 2.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.perf-pullquote p {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: var(--t0); line-height: 1.4; margin-bottom: .65rem;
}
.perf-pullquote cite {
  display: block; font-family: var(--ff-mono); font-size: .58rem;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
  font-style: normal; opacity: .75;
}

.disclaimer-box {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: transparent; border-left: 1px solid var(--gold-border);
  font-size: var(--fs-xs); color: var(--t2); line-height: 1.7;
  font-family: var(--ff-mono); letter-spacing: .02em;
}

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.value-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--b0);
  transition: background var(--base), transform var(--base);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--gold-dim); transform: translateY(-4px); }
.value-num {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 300;
  color: var(--gold); opacity: .25; line-height: 1; margin-bottom: 1.25rem;
}
.value-item h4 { color: var(--t0); margin-bottom: .6rem; font-size: var(--fs-lg); font-weight: 500; }
.value-item p { font-size: var(--fs-sm); line-height: 1.75; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; background: none; border-radius: 0; overflow: visible; }
.team-card {
  background: var(--bg-1);
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--b0);
  transition: transform var(--base), box-shadow var(--base), border-color var(--base);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.55), 0 0 0 1px var(--gold-border); border-color: var(--gold-border); }
.team-photo {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-2); overflow: hidden;
  display: block; margin-bottom: 0; position: relative;
  border-radius: 0; border: none;
}
.team-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--bg-1) 100%);
  pointer-events: none;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(25%); transition: filter .45s ease, transform .45s ease; }
.team-card:hover .team-photo img { filter: grayscale(0%); transform: scale(1.04); }
.team-body { padding: 1.5rem 1.75rem 2rem; }
.team-initials {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 400; color: var(--gold);
  margin-bottom: 1.25rem;
}
.team-name {
  font-family: var(--ff-display); font-size: var(--fs-3xl); font-weight: 300;
  color: var(--t0); margin-bottom: .2rem; letter-spacing: -.01em;
}
.team-role {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.team-bio { font-size: var(--fs-sm); line-height: 1.75; color: var(--t2); }
.team-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1.25rem; }
.team-tag {
  font-family: var(--ff-mono); font-size: .65rem;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); padding: .2rem .55rem; border-radius: var(--r-sm);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── CTA band ── */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--b0);
  border-top: 2px solid var(--gold);
  padding: clamp(4rem,8vw,7rem) clamp(2rem,6vw,8rem);
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(212,175,110,.08) 0%, transparent 65%);
}
.cta-band::after {
  content: 'PNI';
  position: absolute; bottom: -1.5rem; right: 1.5rem;
  font-family: var(--ff-display); font-size: 9rem; font-weight: 300; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,110,.04);
  pointer-events: none; user-select: none; letter-spacing: -.05em;
}
.cta-band h2 { color: var(--t0); margin-bottom: 1rem; position: relative; z-index: 1; font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-band p { max-width: 480px; margin: 0 auto 2.5rem; position: relative; z-index: 1; font-size: var(--fs-lg); }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; position: relative; z-index: 1; }

/* ── FAQ ── */
.faq-2col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem 6rem; align-items: start; }
.faq-2col-grid > div { display: flex; flex-direction: column; }
.faq-2col-grid .stag { display: block; margin-bottom: 1.5rem; }
.faq-2col-grid .faq-wrap { max-width: 100%; }
@media (max-width: 900px) { .faq-2col-grid { grid-template-columns: 1fr; } }
.faq-wrap { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--b0); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0;
  font-size: var(--fs-base); font-weight: 400; color: var(--t1);
  text-align: left; transition: color var(--fast);
}
.faq-q:hover { color: var(--t0); }
.faq-q-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--b0);
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); flex-shrink: 0; transition: all var(--base);
}
.faq-item.open .faq-q { color: var(--t0); }
.faq-item.open .faq-q-icon { background: var(--gold); color: var(--bg-0); border-color: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: .25rem 0 1.5rem; font-size: var(--fs-base); color: var(--t2); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--b0); border-radius: var(--r-xl); overflow: hidden; }
.blog-card {
  background: var(--bg-1); display: flex; flex-direction: column;
  padding: 2rem;
  border-top: 2px solid transparent;
  transition: background var(--base), border-color var(--base);
}
.blog-card:hover { background: var(--bg-2); border-top-color: var(--gold); }
.blog-card-cat {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem;
}
.blog-card-date { font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2); margin-bottom: 1rem; }
.blog-card h3 {
  font-family: var(--ff-display); font-size: var(--fs-2xl); font-weight: 300;
  color: var(--t0); line-height: 1.2; margin-bottom: .75rem; flex: 1;
}
.blog-card p { font-size: var(--fs-sm); margin-bottom: 1.5rem; }
.blog-link {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color var(--fast), gap var(--fast);
  margin-top: auto;
}
.blog-link:hover { color: var(--gold); gap: .8rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.cinfo-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.cinfo-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.cinfo-icon svg { width: 16px; height: 16px; }
.cinfo-lbl {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .25rem;
}
.cinfo-val { font-size: var(--fs-sm); color: var(--t0); font-weight: 400; line-height: 1.6; }

.contact-form-wrap {
  background: var(--bg-2); border: 1px solid var(--b0);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg--full { grid-column: 1/-1; }
.fg label {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--t2); letter-spacing: .08em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--b0);
  border-radius: var(--r-md); padding: .65rem .9rem;
  color: var(--t0); font-size: var(--fs-sm); outline: none;
  transition: border-color var(--fast), background var(--fast);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--t2); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold-border); background: var(--gold-dim);
}
.fg select option { background: var(--bg-2); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: .5rem; width: 100%; justify-content: center; padding: .85rem; font-size: var(--fs-base); }
.form-success { display: none; text-align: center; padding: 2rem; }

/* ── Footer ── */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--b0);
  box-shadow: inset 0 1px 0 rgba(212,175,110,.1);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--b0);
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: var(--fs-sm); color: var(--t2); line-height: 1.8; max-width: 240px; }
.fsoc { display: flex; gap: .5rem; margin-top: 1.5rem; }
.fsoc a {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  border: 1px solid var(--b0);
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); transition: all var(--fast);
}
.fsoc a:hover { border-color: var(--gold-border); color: var(--gold); }
.fsoc a svg { width: 13px; height: 13px; }
.footer-col h4 {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t0);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: .65rem; }
.footer-col a { font-size: var(--fs-sm); color: var(--t2); transition: color var(--fast); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding: 1.5rem 0;
}
.fcopy { font-size: var(--fs-xs); color: var(--t2); font-family: var(--ff-mono); }
.flinks { display: flex; gap: 1.5rem; }
.flinks a { font-size: var(--fs-xs); color: var(--t2); font-family: var(--ff-mono); transition: color var(--fast); }
.flinks a:hover { color: var(--gold); }

/* Footer risk disclosure */
.footer-risk {
  font-size: var(--fs-xs); color: var(--t2); font-family: var(--ff-mono);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1rem 0; line-height: 1.65; text-align: center;
}

/* Risk bar */
.risk-bar {
  background: rgba(212,175,110,.03);
  border-top: 1px solid var(--gold-border);
  padding: .8rem 0;
}
.risk-bar p { font-size: var(--fs-xs); color: var(--t2); text-align: center; line-height: 1.7; font-family: var(--ff-mono); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--bg-0); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  border-bottom: 1px solid var(--b0);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 50% 60% at 20% 50%, black 10%, transparent 80%);
  pointer-events: none;
}
.page-hero-accent {
  position: absolute; right: 0; top: 0;
  width: 50%; height: 100%; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212,175,110,.035) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero-inner > * {
  animation: hero-fade-up .65s cubic-bezier(.22,1,.36,1) both;
}
.page-hero-inner > *:nth-child(2) { animation-delay: .08s; }
.page-hero-inner > *:nth-child(3) { animation-delay: .16s; }
.page-hero-inner > *:nth-child(4) { animation-delay: .24s; }
.page-hero-inner > *:nth-child(5) { animation-delay: .3s; }
.about-hero-split { max-width: 100%; display: flex; align-items: center; gap: 3rem; }
.about-hero-text { flex: 1; min-width: 0; }
.about-hero-img { flex: 0 0 300px; }
.about-hero-img img {
  width: 100%; height: 400px; object-fit: cover; object-position: top center;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  display: block;
}
@media (max-width: 768px) {
  .about-hero-split { flex-direction: column-reverse; gap: 2rem; }
  .about-hero-img { flex: none; width: 100%; max-width: 340px; margin: 0 auto; }
  .about-hero-img img { height: 260px; }
}
.breadcrumb {
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--ff-mono); font-size: var(--fs-xs); letter-spacing: .06em;
  text-transform: uppercase; color: var(--t2); transition: color var(--fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--t2); }
.breadcrumb .cur { color: var(--gold); }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero .hero-sub { max-width: 580px; }

/* ── Data table ── */
.dt { width: 100%; border-collapse: collapse; }
.dt thead th {
  text-align: left; padding: .75rem 1rem;
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold-border);
}
.dt td { padding: .9rem 1rem; font-size: var(--fs-sm); color: var(--t1); border-bottom: 1px solid var(--b0); }
.dt tr:hover td { background: var(--gold-dim); }
.dt .pos { color: #4ade80; font-weight: 500; }
.dt .hl  { color: var(--gold); font-weight: 600; }
/* Block Investment: horizontal strengths strip */
.strength-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--b0);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.strength-item {
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--b0);
  text-align: center;
}
.strength-item:last-child { border-right: none; }
.strength-num {
  font-family: var(--ff-mono);
  font-size: .625rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  opacity: .7;
}
.strength-title {
  font-size: .875rem;
  color: var(--t0);
  margin-bottom: .625rem;
  line-height: 1.3;
}
.strength-desc {
  font-size: .75rem;
  color: var(--t2);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .strength-row { grid-template-columns: repeat(3, 1fr); }
  .strength-item:nth-child(3) { border-right: none; }
  .strength-item:nth-child(3), .strength-item:nth-child(4), .strength-item:nth-child(5), .strength-item:nth-child(6) { border-top: 1px solid var(--b0); }
  .strength-item:nth-child(6) { border-right: none; }
}
@media (max-width: 560px) {
  .strength-row { grid-template-columns: repeat(2, 1fr); }
  .strength-item:nth-child(odd) { border-right: 1px solid var(--b0); }
  .strength-item:nth-child(even) { border-right: none; }
  .strength-item:nth-child(n+3) { border-top: 1px solid var(--b0); }
}

@media (max-width: 768px) {
  .block-audience-grid { grid-template-columns: 1fr !important; }
  .block-why-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 680px) {
  .dt thead { display: none; }
  .dt tr { display: block; border: 1px solid var(--b0); border-radius: var(--r-md); margin-bottom: 1rem; }
  .dt td { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--b0); padding: .65rem 1rem; }
  .dt tr td:last-child { border-bottom: none; }
  .dt td::before { content: attr(data-label); font-family: var(--ff-mono); font-size: .625rem; color: var(--t2); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; }
}

/* ── Cross-program promo grid ── */
.xprog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--b0);
  border-radius: var(--r-xl); overflow: hidden;
}
.xprog-card {
  display: block; background: var(--bg-2); padding: 2rem;
  border-top: 2px solid transparent;
  transition: background var(--base), border-color var(--base);
  text-decoration: none;
}
.xprog-card:hover { background: var(--bg-3); border-top-color: var(--gold); }
.xprog-cat {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; display: block;
}
.xprog-card h3 { font-size: var(--fs-2xl); color: var(--t0); margin-bottom: .5rem; font-weight: 300; }
.xprog-card p { font-size: var(--fs-sm); margin-bottom: 1rem; color: var(--t1); }
.xprog-link {
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--t2);
  letter-spacing: .06em; display: block;
  transition: color var(--fast);
}
.xprog-card:hover .xprog-link { color: var(--gold); }

/* ── Service page specific ── */
.service-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; border: 1px solid var(--gold-border);
  border-radius: var(--r-sm); background: var(--gold-dim);
  font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem;
}

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--b0); border-radius: var(--r-xl); overflow: hidden; }
.step {
  background: var(--bg-2); padding: 2rem 1.75rem;
  position: relative;
  border-top: 2px solid transparent;
  transition: background var(--base), border-color var(--base);
}
.step:hover { background: var(--bg-3); border-top-color: var(--gold); }
.step-num {
  font-family: var(--ff-display); font-size: 4rem; font-weight: 300;
  color: var(--gold); opacity: .15; line-height: 1; margin-bottom: 1rem;
}
.step h4 { color: var(--t0); font-size: var(--fs-base); font-weight: 500; margin-bottom: .5rem; }
.step p { font-size: var(--fs-sm); color: var(--t2); line-height: 1.7; }

.highlight-box {
  background: var(--bg-2); border: 1px solid var(--b0);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
  border-top: 2px solid var(--gold-border);
}
.highlight-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,110,.05), transparent);
}
.highlight-box::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 1.5px solid var(--gold-border);
  border-left: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl) 0 0 0;
  pointer-events: none;
}

/* ── Hero entrance animations (page-load, not scroll) ── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-eyebrow    { animation: hero-fade-up .65s cubic-bezier(.22,1,.36,1) both; }
.hero-h1         { animation: hero-fade-up .7s .08s cubic-bezier(.22,1,.36,1) both; }
.hero-sub        { animation: hero-fade-up .65s .17s cubic-bezier(.22,1,.36,1) both; }
.hero-ctas       { animation: hero-fade-up .6s .26s cubic-bezier(.22,1,.36,1) both; }
.hero-proof      { animation: hero-fade-up .6s .34s cubic-bezier(.22,1,.36,1) both; }
.hero-float-cards { animation: hero-fade-up .75s .3s cubic-bezier(.22,1,.36,1) both; }
.hero-scroll     { animation: hero-fade-in .8s .9s both; }

/* ── Scroll progress bar ── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-bright));
  z-index: 9999; pointer-events: none;
  box-shadow: 0 0 10px var(--gold-glow);
  transition: width .08s linear;
}

/* ── Reveal animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="left"].revealed  { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.97); }
[data-reveal="scale"].revealed { transform: scale(1); }
[data-reveal="fade"]  { transform: none; }
[data-reveal="fade"].revealed  { opacity: 1; }

/* ── Stagger nth-child delays ── */
[data-stagger] > *:nth-child(1) { --delay: 0s; }
[data-stagger] > *:nth-child(2) { --delay: .09s; }
[data-stagger] > *:nth-child(3) { --delay: .18s; }
[data-stagger] > *:nth-child(4) { --delay: .27s; }
[data-stagger] > *:nth-child(5) { --delay: .36s; }
[data-stagger] > *:nth-child(6) { --delay: .45s; }

/* ── WhatsApp float ── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 8px 28px rgba(37,211,102,.4), 0 3px 10px rgba(0,0,0,.3); }
  70%  { box-shadow: 0 0 0 22px rgba(37,211,102,0), 0 8px 28px rgba(37,211,102,.4), 0 3px 10px rgba(0,0,0,.3); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 28px rgba(37,211,102,.4), 0 3px 10px rgba(0,0,0,.3); }
}
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  width: 64px; height: 64px;
  border-radius: 50%; text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.4), 0 3px 10px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .4s ease;
}
.wa-float svg { width: 34px; height: 34px; flex-shrink: 0; }
.wa-float.visible { opacity: 1; pointer-events: auto; animation: wa-pulse 2.5s ease 2.5s infinite; }
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 14px 36px rgba(37,211,102,.55), 0 5px 16px rgba(0,0,0,.35); color: #fff; animation: none; }

/* ── CTA compact ── */
.cta-compact { padding-top: 0; padding-bottom: 3.5rem; }
.cta-compact .cta-band { padding: 2.5rem 2rem; }
.cta-compact .cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

/* ── Strategy profile photo ── */
.strat-photo-wrap { width: 65%; margin: 0 auto; }
@media (max-width: 900px) { .strat-photo-wrap { width: 100%; } }
/* ── Perf screenshots (Myfxbook / Exness) ── */
.perf-screenshot-card { width: 70%; }
@media (max-width: 900px) { .perf-screenshot-card { width: 100%; } }

/* ── Perf image card ── */
.perf-img-card {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  height: 100%;
}
.perf-img-card img {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover; object-position: center center;
  display: block;
}

/* ── Strategy editorial ── */
.strat-grid { align-items: center; }
.strat-img-card {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.strat-img-card img {
  width: 100%; display: block;
  aspect-ratio: 4 / 3; object-fit: cover; object-position: center center;
  transition: transform .5s ease;
}
.strat-img-card:hover img { transform: scale(1.03); }
.strat-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .7rem 1.1rem;
  background: linear-gradient(transparent, rgba(15,15,15,.9));
}
.strat-img-tag {
  font-family: var(--ff-mono); font-size: .52rem;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
}

/* ── Team Video ── */
.tv-section { position: relative; overflow: hidden; }
.tv-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212,175,110,.09), transparent);
}
.team-video-frame {
  position: relative; width: 100%; max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  background: var(--bg-1);
  box-shadow: 0 0 0 1px rgba(212,175,110,.08), 0 32px 80px rgba(0,0,0,.55), 0 0 60px rgba(212,175,110,.07);
}
/* In 2-col perf-grid (about section): reduced size, centered in column */
.perf-grid .team-video-frame { max-width: 100%; margin: 0; aspect-ratio: unset; }
/* Video: native aspect ratio, no forced 16/9 */
.team-video-frame:has(video) { aspect-ratio: unset; min-height: unset; }
/* Index about preview video: responsive size */
.perf-grid .team-video-frame:has(video) { max-width: clamp(45%, 3vw + 38%, 55%); margin: 0 auto; }
@media (max-width: 1100px) { .perf-grid .team-video-frame:has(video) { max-width: 65%; } }
@media (max-width: 900px)  { .perf-grid .team-video-frame:has(video) { max-width: 80%; } }
/* About page team video: responsive */
.team-video-about { max-width: 860px; margin: 0 auto; aspect-ratio: 16/9; overflow: hidden; }
.team-video-about video { width: 100%; height: 100%; object-fit: cover; }
.team-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.team-video-frame video {
  position: relative;
  width: 100%; height: auto;
  display: block;
  border-radius: inherit;
}

/* ── Dubai Band ── */
.dubai-band {
  position: relative; height: 420px;
  overflow: hidden; background: var(--bg-0);
}
.dubai-band-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  opacity: .55;
}
.dubai-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    var(--bg-0) 0%, transparent 22%, transparent 78%, var(--bg-0) 100%);
}
.dubai-band::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    var(--bg-0) 0%, transparent 30%, transparent 70%, var(--bg-0) 100%);
}
.dubai-band-inner {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  text-align: center;
}
.dubai-band-eyebrow {
  font-family: var(--ff-mono); font-size: .58rem;
  color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 1.1rem; opacity: .85;
}
.dubai-band-title {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--t0); line-height: 1.15;
  letter-spacing: -.025em;
  text-shadow: 0 2px 20px rgba(0,0,0,.9), 0 0 60px rgba(0,0,0,.7);
}
.dubai-band-title em { color: var(--gold); font-style: italic; }
.dubai-band-sub {
  font-size: var(--fs-sm); color: var(--t0); margin-top: 1.1rem;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0,0,0,.8), 0 0 40px rgba(0,0,0,.6);
  opacity: .85;
}

/* ── About image card ── */
.about-img-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 1.5rem;
  border: 1px solid var(--gold-border); background: var(--bg-1);
}
.about-img-card img {
  width: 100%; display: block; height: auto;
  transition: transform .45s ease;
}
.about-img-card:hover img { transform: scale(1.02); }
.about-img-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem 1rem;
  font-family: var(--ff-mono); font-size: .52rem;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
  background: linear-gradient(transparent, rgba(15,15,15,.88));
}

/* ── Editorial image break ── */
.img-break {
  position: relative; overflow: hidden;
  height: 340px; background: var(--bg-0);
}
.img-break img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .28; filter: grayscale(30%) sepia(15%);
}
.img-break::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    var(--bg-0) 0%, transparent 20%, transparent 80%, var(--bg-0) 100%);
}
.img-break-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem;
}
.img-break-quote {
  font-family: var(--ff-display); font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 300; font-style: italic; color: var(--t0);
  line-height: 1.45; max-width: 680px; margin-bottom: 1rem;
}
.img-break-attr {
  font-family: var(--ff-mono); font-size: .56rem;
  color: var(--gold); letter-spacing: .13em; text-transform: uppercase;
  opacity: .75;
}

/* ── Investment Programs vertical list ── */
.prog-list { border-top: 1px solid var(--b0); margin-top: 3rem; }
.prog-item {
  display: flex; align-items: center; gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--b0);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.prog-item::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-dim); opacity: 0;
  transition: opacity var(--base);
}
.prog-item:hover::before     { opacity: 1; }
.prog-item:hover .prog-num   { color: var(--gold); }
.prog-item:hover .prog-key-v { color: var(--gold); }
.prog-item:hover .prog-arrow { opacity: 1; transform: translateX(0); }
.prog-num {
  font-family: var(--ff-mono); font-size: var(--fs-xs);
  color: var(--t2); letter-spacing: .12em;
  width: 2.5rem; flex-shrink: 0; position: relative;
  transition: color var(--fast);
}
.prog-body { flex: 1; min-width: 0; position: relative; }
.prog-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400; color: var(--t0);
  margin-bottom: .35rem; line-height: 1.15;
}
.prog-desc { font-size: var(--fs-sm); color: var(--t2); line-height: 1.65; max-width: 58ch; }
.prog-key {
  display: flex; flex-direction: column; align-items: flex-end;
  flex-shrink: 0; text-align: right; gap: .15rem; position: relative;
}
.prog-key-v {
  font-family: var(--ff-display); font-size: 2.25rem;
  font-weight: 300; color: var(--t1);
  letter-spacing: -.025em; line-height: 1;
  transition: color var(--fast);
}
.prog-key-l {
  font-family: var(--ff-mono); font-size: .52rem;
  color: var(--t2); letter-spacing: .1em; text-transform: uppercase; opacity: .6;
}
.prog-arrow {
  opacity: 0; transform: translateX(-8px);
  color: var(--gold); flex-shrink: 0; position: relative;
  transition: all var(--base) var(--ease); margin-left: .25rem;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1100;
  width: min(680px, calc(100vw - 2rem));
  background: var(--bg-2);
  border: 1px solid var(--b0);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-inner { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 1.5rem; flex-wrap: wrap; }
.cookie-icon { color: var(--gold); flex-shrink: 0; }
.cookie-text { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--t2); line-height: 1.5; flex: 1; min-width: 0; }
.cookie-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-btn { font-size: var(--fs-sm); font-family: var(--ff-body); font-weight: 500; border-radius: var(--r-md); padding: 7px 16px; cursor: pointer; transition: background var(--base), color var(--base), border-color var(--base); white-space: nowrap; }
.cookie-btn--primary { background: var(--gold); color: #0F0F0F; border: 1px solid var(--gold); }
.cookie-btn--primary:hover { filter: brightness(1.1); }
.cookie-btn--ghost { background: transparent; color: var(--t2); border: 1px solid var(--b0); }
.cookie-btn--ghost:hover { color: var(--t0); border-color: rgba(255,255,255,.18); }
@media (max-width: 480px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}



/* ── RTL ── */
[dir="rtl"] .hero-layout { direction: rtl; }
[dir="rtl"] .bar-fill { transform-origin: right; }
[dir="rtl"] .breadcrumb { direction: rtl; }

/* ── Index team grid ── */
#idx-team { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem 2rem; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .stats-row, .stats-row-light { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-right { display: none; }
  .svc-list { display: none; }
  .svc-cards-mobile { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .xprog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .prog-tabs { grid-template-columns: repeat(2,1fr); }
  .prog-tab { border-bottom: 1px solid var(--b0); border-right: 1px solid var(--b0); }
  .prog-tab:nth-child(2) { border-right: none; }
  .prog-tab:nth-child(3) { border-bottom: none; }
  .prog-tab:nth-child(4) { border-right: none; border-bottom: none; }
  .prog-tab.active { border-bottom-color: var(--gold); }
  .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { flex-direction: row; }
  .perf-grid { grid-template-columns: 1fr; gap: 3rem; }
  .perf-grid-img-first > *:nth-child(1) { order: 2; }
  .perf-grid-img-first > *:nth-child(2) { order: 1; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid .value-item:nth-child(even) { border-right: none; }
  .values-grid .value-item { border-bottom: 1px solid var(--b0); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta-d { display: none; }
  .hamburger { display: flex; }
  .lang-sw { display: none; }
  .theme-toggle { display: none; }
  #idx-team { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav-logo img { height: 52px; }
  .prog-item { gap: 1rem; padding: 1.5rem 0; }
  .prog-key  { display: none; }
  .prog-desc { display: none; }
  .dubai-band { height: 320px; }
  .img-break { height: 280px; }
  .stats-row, .stats-row-light { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  #idx-team { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-item { border-right: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .perf-metrics { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .xprog-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1.25rem; }
}

/* ============================================================
   LIGHT THEME — [data-theme="light"]
   Dark theme above is the locked reference. This block only
   adds / overrides — never modifies the dark rules above.
   ============================================================ */

/* ── Token overrides ── */
[data-theme="light"] {
  --bg-0:  #F8FAFF;
  --bg-1:  #EEF3FF;
  --bg-2:  #E2ECF8;
  --bg-3:  #D6E3F2;
  --bg-4:  #C9D9EC;

  --light-0: #F8FAFF;
  --light-1: #EEF3FF;
  --light-2: #E2ECF8;

  --gold:        #B8911F;
  --gold-bright: #D4AF6E;
  --gold-muted:  #7A5E10;
  --gold-dim:    rgba(184,145,31,.07);
  --gold-border: rgba(184,145,31,.28);
  --gold-glow:   rgba(184,145,31,.12);

  --t0: #0A1628;
  --t1: #274468;
  --t2: #5A7898;

  --lt0: #0A1628;
  --lt1: #274468;
  --lt2: #5A7898;

  --b0: rgba(10,22,40,.09);
  --b1: rgba(10,22,40,.04);
  --lb0: rgba(10,22,40,.09);
  --lb1: rgba(10,22,40,.04);
}

/* ── Body ── */
[data-theme="light"] body { color: var(--t0); }

/* ── Navigation ── */
[data-theme="light"] #nav .nav-links a { color: rgba(255,255,255,.85); }
[data-theme="light"] #nav .nav-links a:hover,
[data-theme="light"] #nav .nav-links a.active { color: #D4AF6E; }
[data-theme="light"] #nav.scrolled {
  background: rgba(248,250,255,.95);
  border-bottom: 1px solid rgba(10,22,40,.08);
}
[data-theme="light"] #nav.scrolled .nav-links a { color: #1A3358; }
[data-theme="light"] #nav.scrolled .nav-links a:hover,
[data-theme="light"] #nav.scrolled .nav-links a.active { color: #B8911F; }
[data-theme="light"] #nav.scrolled .nav-logo img { filter: brightness(0.12); }
[data-theme="light"] .mobile-nav { background: #0F2442; }

/* ── Hero (reste navy en light mode) ── */
[data-theme="light"] .hero { background: #0F2442; }
[data-theme="light"] .hero-eyebrow-text { color: var(--gold-bright); }

/* ── Page hero inner pages (reste navy) ── */
[data-theme="light"] .page-hero { background: #0F2442; border-bottom-color: rgba(184,145,31,.2); }

/* ── Dark contexts: re-scope tokens to dark values ── */
[data-theme="light"] .section-dark,
[data-theme="light"] .hero,
[data-theme="light"] .page-hero {
  --t0: #F0F5FF;
  --t1: rgba(200,220,255,.78);
  --t2: rgba(180,205,240,.52);
  --b0: rgba(255,255,255,.10);
  --b1: rgba(255,255,255,.05);
  --lb0: rgba(255,255,255,.10);
  --gold-border: rgba(212,175,110,.28);
  --gold-dim: rgba(212,175,110,.09);
  --bg-1: rgba(255,255,255,.04);
  --bg-2: rgba(255,255,255,.08);
  --bg-3: rgba(255,255,255,.13);
}
/* ── Section dark (navy en light mode) ── */
[data-theme="light"] .section-dark { background: #0F2442; color: #F0F5FF; }
[data-theme="light"] .section-dark h1,
[data-theme="light"] .section-dark h2,
[data-theme="light"] .section-dark h3,
[data-theme="light"] .section-dark h4 { color: #F0F5FF; }
[data-theme="light"] .section-dark .stag { color: var(--gold-bright); }

/* ── Section mid ── */
[data-theme="light"] .section-mid { background: #EEF3FF; border-color: rgba(10,22,40,.06); }
[data-theme="light"] .ghost-num { opacity: .12 !important; color: var(--gold-muted) !important; }

/* ── Index team grid: re-scope tokens to dark values on light bg ── */
[data-theme="light"] #idx-team {
  --t0: #0A1628;
  --t1: #2E4060;
  --t2: #3D3A35;
  --gold: var(--gold-muted);
}

/* ── Footer ── */
[data-theme="light"] footer { background: #081428; border-top-color: rgba(184,145,31,.15); }
[data-theme="light"] .footer-brand p { color: rgba(180,205,235,.6); }
[data-theme="light"] .footer-col h4 { color: rgba(240,245,255,.9); }
[data-theme="light"] .footer-col a { color: rgba(180,205,235,.6); }
[data-theme="light"] .footer-col a:hover { color: var(--gold-bright); }
[data-theme="light"] .fcopy,
[data-theme="light"] .flinks a { color: rgba(180,205,235,.5); }
[data-theme="light"] .flinks a:hover { color: var(--gold-bright); }
[data-theme="light"] .footer-risk { color: rgba(180,205,235,.4); }

/* ── Typography ── */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 { color: var(--t0); }

/* ── Cards / Team ── */
[data-theme="light"] .team-card {
  background: #FFFFFF;
  border-color: rgba(10,22,40,.08);
  box-shadow: 0 2px 16px rgba(10,22,40,.06);
}
[data-theme="light"] .team-card:hover {
  box-shadow: 0 16px 48px rgba(10,22,40,.12);
  border-color: var(--gold-border);
}
[data-theme="light"] .team-photo::after {
  background: linear-gradient(to bottom, transparent 55%, #FFFFFF 100%);
}
[data-theme="light"] .section-dark .team-card-name { color: #0A1628; }
[data-theme="light"] .section-dark .team-card-bio { color: #444038; }
[data-theme="light"] .section-dark .team-card-role { color: var(--gold-muted); }
[data-theme="light"] .section-dark .team-card-idx { color: var(--gold-muted); opacity: 1; }
[data-theme="light"] .section-dark .team-card-tag { color: var(--gold-muted); border-color: rgba(10,22,40,.14); background: rgba(0,0,0,.03); }
[data-theme="light"] .section-dark .team-card-divider { background: linear-gradient(90deg, var(--gold-muted), transparent); }

/* ── Programs list ── */
[data-theme="light"] .prog-item { border-bottom-color: rgba(10,22,40,.08); }
[data-theme="light"] .prog-item:hover { background: rgba(184,145,31,.04); }
[data-theme="light"] .prog-num { color: rgba(10,22,40,.15); }
[data-theme="light"] .prog-title { color: var(--t0); }
[data-theme="light"] .prog-desc { color: var(--t1); }
[data-theme="light"] .prog-key-v { color: var(--t0); }
[data-theme="light"] .prog-key-l { color: var(--t2); }

/* ── Track Record section ── */
[data-theme="light"] .perf-number { color: var(--gold); }
[data-theme="light"] .perf-sub { color: var(--t2); }
[data-theme="light"] .perf-footnote { color: var(--t2); }

/* ── About section ── */
[data-theme="light"] .team-video-frame { border-color: rgba(10,22,40,.08); }

/* ── FAQ ── */
[data-theme="light"] .faq-item { border-color: rgba(10,22,40,.08); }
[data-theme="light"] .faq-q { color: var(--t0); }
[data-theme="light"] .faq-a { color: var(--t1); }

/* ── Buttons ── */
[data-theme="light"] .btn-outline {
  border-color: rgba(10,22,40,.2);
  color: var(--t0);
}
[data-theme="light"] .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
[data-theme="light"] .btn-ghost { color: var(--t1); border-color: rgba(10,22,40,.15); }
[data-theme="light"] .btn-ghost:hover { color: var(--t0); border-color: rgba(10,22,40,.3); }

/* ── Section headers ── */
[data-theme="light"] .stag { color: var(--gold); }

/* ── Ticker ── */
[data-theme="light"] .ticker-wrap { background: #EEF3FF; border-color: rgba(10,22,40,.06); }
[data-theme="light"] .ticker-item { color: var(--t2); }
[data-theme="light"] .ti-val { color: var(--t0); }

/* ── Scroll progress ── */
[data-theme="light"] #scrollProgress {
  background: linear-gradient(90deg, #B8911F, #D4AF6E, #B8911F);
}

/* ── Hero grid ── */
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
}

/* ── Theme toggle button ── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--t1);
  border-radius: 50%;
  cursor: pointer; transition: all var(--base);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,110,.14); }
.theme-toggle svg { transition: transform .4s var(--ease); }
.theme-toggle:hover svg { transform: rotate(22deg); }
[data-theme="light"] .theme-toggle { background: rgba(184,145,31,.08); border-color: rgba(184,145,31,.28); color: #274468; }
[data-theme="light"] .theme-toggle:hover { color: #B8911F; border-color: #B8911F; background: rgba(184,145,31,.14); }

/* ── Nav Services dropdown button (is a <button>, not <a>, needs explicit white) ── */
[data-theme="light"] #nav .nav-dd-btn { color: rgba(255,255,255,.85); }
[data-theme="light"] #nav .nav-has-dd:hover .nav-dd-btn,
[data-theme="light"] #nav .nav-has-dd:focus-within .nav-dd-btn { color: #D4AF6E; }
[data-theme="light"] #nav.scrolled .nav-dd-btn { color: #1A3358; }
[data-theme="light"] #nav.scrolled .nav-has-dd:hover .nav-dd-btn { color: #B8911F; }

/* ── Nav dropdown panel in light mode ── */
[data-theme="light"] .nav-prog-dd { background: #FFFFFF; border-color: rgba(10,22,40,.10); box-shadow: 0 8px 32px rgba(10,22,40,.18); }
[data-theme="light"] .nav-prog-dd a { color: #1A3358; border-bottom-color: rgba(10,22,40,.07); }
[data-theme="light"] .nav-prog-dd a:hover { background: rgba(184,145,31,.06); color: #0A1628; }

/* ── Mobile nav links in light mode (navy background → white text) ── */
[data-theme="light"] .mobile-nav a { color: rgba(255,255,255,.85); }
[data-theme="light"] .mobile-nav a:hover { color: #D4AF6E; }
[data-theme="light"] .mobile-nav-toggle { color: rgba(255,255,255,.85); }
[data-theme="light"] .mobile-nav-group.open .mobile-nav-toggle { color: #D4AF6E; }
[data-theme="light"] .mobile-nav-sub a { color: rgba(200,220,255,.72); }
[data-theme="light"] .mobile-nav-sub a:hover { color: #D4AF6E; }
[data-theme="light"] .mobile-nav-lang a { color: rgba(200,220,255,.6); }

/* ── Service pages — elements using --bg-2 inside section-dark get light root value, but text tokens are re-scoped to white → fix bg ── */
[data-theme="light"] .section-dark .highlight-box {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,175,110,.22);
}
[data-theme="light"] .section-dark .step {
  background: rgba(255,255,255,.05);
}
[data-theme="light"] .section-dark .step:hover {
  background: rgba(255,255,255,.11);
  border-top-color: var(--gold-bright);
}
[data-theme="light"] .section-dark .cta-band {
  background: rgba(255,255,255,.06);
  border-top-color: var(--gold-bright);
}

/* Value nums slightly more visible on light backgrounds */
[data-theme="light"] .value-num { opacity: .42; }

/* Dubai band hidden in light mode */
[data-theme="light"] .dubai-band { display: none; }

/* ── Mobile hamburger + theme toggle in light mode ── */
@media (max-width: 900px) {
  [data-theme="light"] .hamburger span { background: #FFFFFF; }
  [data-theme="light"] #nav.scrolled .hamburger span { background: #1A3358; }
  [data-theme="light"] .theme-toggle {
    display: flex;
    color: #FFFFFF;
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
  }
  [data-theme="light"] #nav.scrolled .theme-toggle {
    color: #1A3358;
    border-color: rgba(26,51,88,.3);
    background: rgba(26,51,88,.08);
  }
  [data-theme="light"] .theme-toggle:hover {
    color: #D4AF6E;
    border-color: #D4AF6E;
    background: rgba(255,255,255,.15);
  }
}
