/* ============================================================
   DRTB SOLUTIONS — Premium theme system
   Three directions switch via [data-direction] on <html>:
     dossier (default) · sovereign · vanguard
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   TOKENS  (DOSSIER = default)
   ============================================================ */
:root {
  /* fonts */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* display behaviour */
  --display-case: uppercase;
  --display-weight: 600;
  --display-tracking: 0.04em;
  --display-leading: 1.02;
  --eyebrow-case: uppercase;
  --eyebrow-tracking: 0.34em;
  --eyebrow-family: var(--font-mono);

  /* palette */
  --bg: hsl(0 0% 4%);
  --bg-2: hsl(0 0% 6.5%);
  --card: hsl(0 0% 7.5%);
  --fg: hsl(40 8% 93%);
  --muted: hsl(40 5% 64%);
  --faint: hsl(40 5% 42%);
  --border: hsl(40 6% 15%);
  --accent: hsl(43 74% 52%);
  --accent-soft: hsl(43 74% 52% / 0.14);
  --on-accent: hsl(0 0% 5%);

  --radius: 2px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --grid-line: hsl(220 10% 30% / 0.5);
  --grid-show: 1;
}

/* ---------- SOVEREIGN ---------- */
[data-direction="sovereign"] {
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
  --font-mono: "Hanken Grotesk", sans-serif;

  --display-case: none;
  --display-weight: 500;
  --display-tracking: 0.005em;
  --display-leading: 1.08;
  --eyebrow-case: uppercase;
  --eyebrow-tracking: 0.42em;
  --eyebrow-family: var(--font-body);

  --bg: hsl(32 14% 6%);
  --bg-2: hsl(32 12% 8.5%);
  --card: hsl(32 11% 10%);
  --fg: hsl(36 22% 93%);
  --muted: hsl(34 12% 66%);
  --faint: hsl(34 10% 46%);
  --border: hsl(36 14% 18%);
  --accent: #E0A526;
  --accent-soft: hsl(40 78% 51% / 0.14);
  --on-accent: hsl(32 30% 7%);
  --radius: 1px;
  --grid-line: hsl(36 14% 28% / 0.4);
}

/* ---------- VANGUARD ---------- */
[data-direction="vanguard"] {
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-mono: "Space Mono", monospace;

  --display-case: none;
  --display-weight: 600;
  --display-tracking: -0.018em;
  --display-leading: 1.0;
  --eyebrow-case: uppercase;
  --eyebrow-tracking: 0.28em;
  --eyebrow-family: var(--font-mono);

  --bg: hsl(220 20% 5.5%);
  --bg-2: hsl(220 18% 8%);
  --card: hsl(220 17% 9.5%);
  --fg: hsl(210 16% 95%);
  --muted: hsl(214 12% 66%);
  --faint: hsl(214 10% 44%);
  --border: hsl(216 16% 18%);
  --accent: hsl(44 88% 58%);
  --accent-soft: hsl(44 88% 58% / 0.13);
  --on-accent: hsl(220 30% 6%);
  --radius: 3px;
  --grid-line: hsl(216 22% 34% / 0.45);
}

/* heading-case override tweak */
[data-headcase="upper"] { --display-case: uppercase; --display-tracking: 0.05em; }
[data-headcase="title"] { --display-case: none; }

/* ============================================================
   PRELOADER — entry screen with logo
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, hsl(43 74% 52% / .07), transparent 70%);
}
.pre-inner {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.pre-logo {
  height: 84px; width: auto;
  opacity: 0; transform: translateY(10px) scale(.96);
  animation: preLogo 1s cubic-bezier(.22,1,.36,1) .1s forwards;
  filter: drop-shadow(0 0 24px hsl(43 74% 52% / .25));
}
.pre-wm {
  margin-top: 22px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: clamp(15px, 3vw, 19px); font-weight: 500;
  color: var(--fg);
  opacity: 0; animation: preFade .8s ease .45s forwards;
}
.pre-wm b { color: var(--accent); font-weight: 600; }
.pre-bar {
  display: block; width: 140px; height: 1px; margin-top: 26px;
  background: var(--border); overflow: hidden;
  opacity: 0; animation: preFade .6s ease .6s forwards;
}
.pre-bar i {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: preBar 1.4s ease-in-out .7s infinite;
}
.pre-tag {
  margin-top: 22px;
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 9.5px; color: var(--faint);
  opacity: 0; animation: preFade .8s ease .85s forwards;
}
@keyframes preLogo { to { opacity: 1; transform: none; } }
@keyframes preFade { to { opacity: 1; } }
@keyframes preBar { 0% { transform: translateX(-160%); } 100% { transform: translateX(420%); } }
@media (prefers-reduced-motion: reduce) {
  .pre-logo, .pre-wm, .pre-bar, .pre-tag { animation: none; opacity: 1; transform: none; }
  .pre-bar i { animation: none; width: 100%; }
}

/* ============================================================
   BASE
   ============================================================ */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  text-transform: var(--display-case);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
  color: var(--fg);
}
.accent { color: var(--accent); }
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* eyebrow / section kicker */
.eyebrow {
  font-family: var(--eyebrow-family);
  text-transform: var(--eyebrow-case);
  letter-spacing: var(--eyebrow-tracking);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

/* gold divider line */
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); border: 0; }
.rule-sm { width: 64px; }
.rule-md { width: 88px; }

/* tactical grid */
.grid-tex {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: calc(0.12 * var(--grid-show));
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
}

/* section header block */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto; }
.sec-head h2 { font-size: clamp(30px, 5vw, 52px); margin-top: 14px; }
.sec-head .lede { color: var(--muted); margin-top: 20px; font-size: clamp(15px, 1.5vw, 19px); line-height: 1.7; }

/* primary button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px;
  padding: 16px 38px; border-radius: var(--radius);
  background: var(--accent); color: var(--on-accent);
  border: 1px solid var(--accent);
  transition: filter .3s, box-shadow .3s, transform .3s;
}
.btn:hover { filter: brightness(1.08); box-shadow: 0 0 32px hsl(43 74% 52% / .4); }
.btn-ghost {
  background: transparent; color: var(--fg); border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; filter: none; }

/* ============================================================
   TOP TICKER + NAV
   ============================================================ */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 36px; display: flex; align-items: center; overflow: hidden;
  background: hsl(32 18% 4% / 0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.ticker .dot { color: var(--accent); font-size: 8px; vertical-align: middle; }
.ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: tick 60s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: hsl(40 8% 72%); padding-right: 56px;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 55;
  background: hsl(0 0% 0% / 0.55); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, top .3s;
}
.nav.scrolled { background: hsl(0 0% 2% / 0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; }
.brand .wm { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 18px; }
.brand .wm b { color: var(--accent); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a, .nav-links button {
  font-family: var(--eyebrow-family); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; color: var(--muted); transition: color .25s; position: relative; padding: 4px 0;
}
.nav-links a::after, .nav-links button::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--accent); transition: width .3s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--accent); }
.nav-links a:hover::after, .nav-links button:hover::after { width: 100%; }
.nav-cta { font-family: var(--font-display) !important; padding: 9px 22px !important; border: 1px solid var(--border); border-radius: var(--radius); color: var(--fg) !important; }
.nav-cta:hover { border-color: var(--accent); }
.nav-toggle { display: none; }

.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; }
.hero-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); z-index: 6; }

/* full-bleed cinematic media */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-poster { z-index: 0; transform: scale(1.08); animation: kenburns 24s ease-out forwards; }
.hero-video { z-index: 1; opacity: 0; transition: opacity .9s ease; }
.hero-video.playing { opacity: 1; }
@keyframes kenburns { to { transform: scale(1); } }
.hero-cine { position: absolute; inset: 0; z-index: 2; pointer-events: none; background:
   linear-gradient(to top, var(--bg) 0%, hsl(var(--bg-h, 32) 20% 6% / .35) 30%, transparent 62%),
   linear-gradient(to right, hsl(20 25% 3% / .72) 0%, hsl(20 25% 3% / .3) 42%, transparent 70%),
   radial-gradient(ellipse 120% 80% at 50% 40%, transparent 50%, hsl(20 25% 2% / .55) 100%); }

.hero-content { position: relative; z-index: 5; text-align: left; width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 112px; padding-bottom: 48px; }
.hero-content .eyebrow { display: block; margin-bottom: 22px; color: var(--accent); }
.hero h1 { font-size: clamp(44px, 7.5vw, 100px); max-width: 16ch; }
.hero h1 .l1 { color: #fff; display: block; }
.hero h1 .l2 { color: var(--accent); display: block; }
.hero .sub { color: hsl(0 0% 100% / .85); font-size: clamp(16px, 1.7vw, 21px); max-width: 540px; margin: 26px 0 0; line-height: 1.6; text-shadow: 0 2px 16px hsl(0 0% 0% / .6); }
.hero .cta-row { margin-top: 38px; display: flex; align-items: center; justify-content: flex-start; gap: 28px; flex-wrap: wrap; }

/* operational footprint panel */
.hero-reach { border-left: 1px solid var(--border); padding-left: clamp(22px, 2.4vw, 38px); }
.hr-label { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.22em; font-size: 10.5px; color: var(--faint); margin-bottom: 22px; }
.hr-list li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.hr-list li:last-child { border-bottom: 0; }
.hr-list li span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; font-size: clamp(15px, 1.35vw, 18px); color: hsl(0 0% 100% / .9); white-space: nowrap; }
.hr-list li i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex: none; }
.hero-link { font-family: var(--eyebrow-family); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; color: hsl(0 0% 100% / .82); display: inline-flex; align-items: center; gap: 9px; transition: color .25s; }
.hero-link span { color: var(--accent); transition: transform .25s; display: inline-block; }
.hero-link:hover { color: var(--accent); }
.hero-link:hover span { transform: translateX(5px); }

/* interactive sectors band */
/* Situational world map (intelligence style) */
.map-console { position: relative; margin-top: 40px; border: 1px solid var(--border); background: hsl(220 32% 5%); border-radius: var(--radius); box-shadow: 0 30px 80px -34px hsl(0 0% 0% / .8); overflow: hidden; }
.map-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.mb-left, .mb-right { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.2em; font-size: 10.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.mb-right { color: var(--faint); letter-spacing: 0.24em; }
.mb-live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 hsl(43 80% 55% / .6); animation: livepulse 1.8s ease-out infinite; }

.map-area { position: relative; width: 100%; aspect-ratio: 2.15 / 1; overflow: hidden; background: radial-gradient(ellipse 70% 90% at 55% 45%, hsl(220 30% 9%), hsl(220 34% 5%)); }
.map-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85;
  filter: brightness(1.5) contrast(1.18) saturate(.5) sepia(.55) hue-rotate(2deg);
  -webkit-mask-image: radial-gradient(ellipse 88% 96% at 50% 50%, #000 60%, transparent 100%);
          mask-image: radial-gradient(ellipse 88% 96% at 50% 50%, #000 60%, transparent 100%); }
.map-area::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 70% at 60% 42%, var(--accent-soft), transparent 65%); mix-blend-mode: screen; }
.map-grid { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: linear-gradient(hsl(43 60% 55% / .07) 1px, transparent 1px), linear-gradient(90deg, hsl(43 60% 55% / .07) 1px, transparent 1px);
  background-size: 8.33% 16.66%;
  -webkit-mask-image: radial-gradient(ellipse 88% 96% at 50% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 88% 96% at 50% 50%, #000 55%, transparent 100%); }

.map-arcs { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 2; }
.marc-base { fill: none; stroke-width: 1; opacity: .22; }
.marc-flow { fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 22 200; stroke-dashoffset: 222; animation: arcflow 3.6s linear infinite; filter: drop-shadow(0 0 3px currentColor); }
@keyframes arcflow { to { stroke-dashoffset: 0; } }
.arc-field, .arc-hq { stroke: #E0A526; color: #E0A526; }
.arc-mar { stroke: #6BA6E0; color: #6BA6E0; }
.arc-field { stroke: #E14B3A; color: #E14B3A; }

.map-nodes { position: absolute; inset: 0; z-index: 3; }
.mnode { position: absolute; transform: translate(-50%, -50%); animation: nodein .7s both ease-out; }
@keyframes nodein { from { opacity: 0; } to { opacity: 1; } }
.mpin { position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--mc); box-shadow: 0 0 10px var(--mc), 0 0 2px #fff; }
.mring { position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--mc); transform: translate(-50%,-50%); animation: ping 2.6s ease-out infinite; }
@keyframes ping { 0% { width: 8px; height: 8px; opacity: .9; } 100% { width: 42px; height: 42px; opacity: 0; } }
.mnode-field { --mc: #E14B3A; }
.mnode-mar { --mc: #6BA6E0; }
.mnode-hq { --mc: #F4C24A; }
.mnode-hq .mpin { width: 12px; height: 12px; box-shadow: 0 0 16px var(--mc), 0 0 4px #fff; }
.mnode-hq .mring { width: 12px; height: 12px; border-width: 2px; animation-duration: 2s; }
.mhit { position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; transform: translate(-50%,-50%); border-radius: 50%; cursor: pointer; }
.mnode:hover .mpin { transform: translate(-50%,-50%) scale(1.4); }
.mnode .mpin { transition: transform .2s; }

.map-tip { position: absolute; z-index: 6; transform: translate(-50%, calc(-100% - 14px)); pointer-events: none;
  background: hsl(220 30% 6% / .96); border: 1px solid var(--border); border-bottom: 2px solid var(--accent);
  padding: 8px 13px; border-radius: var(--radius); white-space: nowrap; backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .18s; box-shadow: 0 10px 30px -10px hsl(0 0% 0% / .7); }
.map-tip.show { opacity: 1; }
.map-tip .mt-name { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: 13px; color: #fff; }
.map-tip .mt-kind { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 9.5px; margin-top: 3px; }
.map-tip .mt-field { color: #E14B3A; }
.map-tip .mt-mar { color: #6BA6E0; }
.map-tip .mt-hq { color: #F4C24A; }

.map-tick { }
.map-area .tick { position: absolute; width: 14px; height: 14px; z-index: 4; opacity: .5; }
.map-area .tick.tl { top: 8px; left: 8px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.map-area .tick.tr { top: 8px; right: 8px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.map-area .tick.bl { bottom: 8px; left: 8px; border-bottom: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.map-area .tick.br { bottom: 8px; right: 8px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

.map-legend { display: flex; flex-wrap: wrap; gap: 14px 30px; padding: 16px 18px; border-top: 1px solid var(--border); }
.map-legend span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 9px; }
.map-legend .lg { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }
.map-legend .lg.field { background: #E14B3A; color: #E14B3A; }
.map-legend .lg.mar { background: #6BA6E0; color: #6BA6E0; }
.map-legend .lg.hq { background: #F4C24A; color: #F4C24A; }

@media (max-width: 700px) {
  .map-area { aspect-ratio: 1.6 / 1; }
  .mb-right { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .marc-flow, .mring, .mb-live { animation: none !important; }
}

/* Who We Protect — sector tiles (photo cards) */
.wwp-tiles { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 40px; }
.wwp-tile { grid-column: span 3; position: relative; overflow: hidden; height: 250px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .4s, transform .4s, box-shadow .4s; }
.wwp-tile:nth-child(n+5) { grid-column: span 4; }
.wt-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) brightness(.7) contrast(1.05); transition: transform 1s ease, filter .5s; }
.wwp-tile:hover .wt-img { transform: scale(1.08); filter: grayscale(0) brightness(.82); }
.wt-veil { position: absolute; inset: 0; background: linear-gradient(to top, hsl(0 0% 0% / .92) 0%, hsl(0 0% 0% / .45) 50%, hsl(0 0% 0% / .55) 100%); transition: background .5s; }
.wwp-tile:hover .wt-veil { background: linear-gradient(to top, hsl(0 0% 0% / .9) 0%, hsl(0 0% 0% / .25) 55%, hsl(0 0% 0% / .35) 100%); }
.wwp-tile:hover { border-color: hsl(43 74% 52% / .6); transform: translateY(-4px); box-shadow: 0 18px 46px -22px hsl(43 74% 52% / .45); }
.wt-ic { position: absolute; top: 22px; left: 22px; z-index: 2; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid hsl(43 74% 52% / .5); border-radius: 50%; color: var(--accent); background: hsl(0 0% 0% / .35); backdrop-filter: blur(4px); transition: background .4s, border-color .4s; }
.wt-ic svg { width: 20px; height: 20px; display: block; }
.wwp-tile:hover .wt-ic { background: hsl(43 74% 52% / .18); border-color: var(--accent); }
.wt-body { position: relative; z-index: 2; }
.wt-name { display: block; font-family: var(--font-display); text-transform: var(--display-case); letter-spacing: 0.02em; font-weight: 600; font-size: clamp(19px, 2vw, 24px); color: #fff; }
.wt-tag { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--accent); margin-top: 5px; }

@media (max-width: 900px) { .wwp-tiles { grid-template-columns: repeat(2, 1fr); } .wwp-tile, .wwp-tile:nth-child(n+5) { grid-column: span 1; } }
@media (max-width: 480px) { .wwp-tiles { grid-template-columns: 1fr; } .wwp-tile, .wwp-tile:nth-child(n+5) { grid-column: span 1; } .wwp-tile { height: 210px; } }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 124px; }
  .hero-reach { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; padding-top: 28px; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero { min-height: auto; }
  .hero-cred-inner { gap: 14px; }
  .hc-sectors { gap: 14px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-spot { display: none !important; }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.band { padding: clamp(48px, 6.5vw, 86px) 0; }
.band-tight { padding: clamp(40px, 5vw, 68px) 0; }
.band-alt { background: var(--bg-2); }
.band-contact { background: var(--bg-2); }

/* WHO WE ARE */
.who { max-width: 880px; margin: 0 auto; text-align: center; }
.who .big { color: #fff; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.5; letter-spacing: 0.005em; font-weight: 400; }
.who .sub { color: var(--muted); font-size: clamp(15px, 1.7vw, 20px); line-height: 1.7; }

/* CARDS (identity / reach) */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card {
  background: var(--card); border: 1px solid var(--border); padding: 40px 32px; text-align: center;
  border-radius: var(--radius); transition: border-color .5s, transform .5s, box-shadow .5s; position: relative; overflow: hidden;
}
.card:hover { border-color: hsl(43 74% 52% / .5); transform: translateY(-4px); box-shadow: 0 18px 50px -22px hsl(43 74% 52% / .4); }
.card .ic { width: 56px; height: 56px; margin: 0 auto 24px; border: 1px solid hsl(43 74% 52% / .35); display: flex; align-items: center; justify-content: center; color: var(--accent); border-radius: var(--radius); transition: border-color .4s; }
.card:hover .ic { border-color: var(--accent); }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-size: 19px; color: var(--fg); }
.card .num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--accent); display: block; }
.card p { color: var(--muted); font-size: 14.5px; margin-top: 14px; line-height: 1.65; }

/* CAPABILITIES grid */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.cap {
  position: relative; display: block; height: 380px; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .5s, box-shadow .5s;
}
.cap:hover { border-color: hsl(43 74% 52% / .6); box-shadow: 0 14px 46px -12px hsl(43 74% 52% / .35); }
.cap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.85); transition: transform 1.2s ease, filter .6s; }
.cap.contain img { object-fit: contain; background: var(--bg); }
.cap:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.cap .veil { position: absolute; inset: 0; background: linear-gradient(to top, hsl(0 0% 0% / .9) 0%, hsl(0 0% 0% / .55) 45%, hsl(0 0% 0% / .65) 100%); transition: background .5s; }
.cap:hover .veil { background: linear-gradient(to top, hsl(0 0% 0% / .85) 0%, hsl(0 0% 0% / .3) 50%, hsl(0 0% 0% / .4) 100%); }
.cap .body { position: absolute; inset: 0; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; }
.cap .knum { position: absolute; top: 18px; right: 26px; font-family: var(--font-display); font-weight: 700; font-size: 56px; color: hsl(0 0% 100% / .14); transition: color .5s; }
.cap:hover .knum { color: hsl(43 74% 52% / .42); }
.cap h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; font-size: 21px; transition: color .4s; }
.cap:hover h3 { color: var(--accent); }
.cap p { color: hsl(0 0% 100% / .78); font-size: 13.5px; line-height: 1.55; margin-top: 12px; }
.cap .explore { align-self: flex-start; margin-top: 20px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11.5px; color: var(--muted); border: 1px solid hsl(0 0% 100% / .25); padding: 9px 20px; border-radius: var(--radius); transition: all .3s; }
.cap:hover .explore { border-color: var(--accent); color: var(--accent); }

/* DRTB METHOD — expanding accordion */
.method-wrap { margin-top: 40px; position: relative; }
.method-line { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, hsl(43 74% 52% / .4), transparent); }
.method { display: flex; gap: 12px; min-height: 380px; }
.step {
  position: relative; overflow: hidden; flex: 1; cursor: pointer; text-align: left;
  border: 1px solid var(--border); background: hsl(0 0% 100% / .015); backdrop-filter: blur(2px);
  border-radius: var(--radius); transition: flex .7s cubic-bezier(.22,1,.36,1), border-color .5s;
}
.step:hover { border-color: hsl(43 74% 52% / .4); }
.step.active { flex: 5.5; border-color: hsl(43 74% 52% / .6); }
.step .bignum { position: absolute; font-family: var(--font-display); font-weight: 700; color: hsl(43 74% 52% / .12); pointer-events: none; transition: all .7s; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 120px; line-height: 1; }
.step.active .bignum { top: 18px; left: auto; right: 28px; transform: none; font-size: 168px; }
.step .vtitle { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%) rotate(180deg); writing-mode: vertical-rl; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 14px; color: hsl(0 0% 100% / .82); white-space: nowrap; }
.step.active .vtitle { display: none; }
.step .expand { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; opacity: 0; transition: opacity .4s .2s; }
.step.active .expand { opacity: 1; }
.step .expand .tick { width: 48px; height: 1px; background: var(--accent); margin-bottom: 22px; }
.step .expand h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); }
.step .expand p { color: var(--muted); margin-top: 16px; font-size: 16px; line-height: 1.65; max-width: 460px; }

/* TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.quote {
  position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--border);
  padding: 34px; border-radius: var(--radius); display: flex; flex-direction: column;
  transition: border-color .5s, transform .5s, box-shadow .5s;
}
.quote:hover { border-color: hsl(43 74% 52% / .5); transform: translateY(-4px); box-shadow: 0 16px 44px -16px hsl(43 74% 52% / .35); }
.quote .qmark { color: hsl(43 74% 52% / .5); }
.quote .qmark svg { width: 26px; height: 26px; }
.quote .qt { color: hsl(0 0% 100% / .88); font-style: italic; line-height: 1.65; margin: 18px 0 24px; font-size: 15px; flex: 1; }
.quote .meta { border-top: 1px solid var(--border); padding-top: 16px; }
.quote .meta .role { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--accent); font-weight: 600; }
.quote .meta .org { color: var(--muted); font-size: 12.5px; margin-top: 5px; }
.quote .meta .reg { color: var(--faint); font-size: 11px; margin-top: 2px; }

/* Stats band */
.stats-band { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: flex; align-items: center; justify-content: space-between; padding: clamp(36px, 5vw, 60px) 0; flex-wrap: wrap; gap: 24px 0; }
.stat-item { flex: 1; min-width: 180px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stat-num { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-tracking); font-size: clamp(42px, 6vw, 72px); color: var(--accent); line-height: 1; display: block; transition: opacity .3s; }
.stat-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; color: var(--muted); line-height: 1.5; }
.stat-sep { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--border), transparent); flex: none; }

@media (max-width: 700px) {
  .stats-inner { justify-content: center; gap: 22px 0; }
  .stat-sep { display: none; }
  .stat-item { min-width: 48%; }
}

/* tagline */
.tagline { text-align: center; padding: clamp(56px, 8vw, 104px) 0; background: var(--bg-2); }
.tagline p { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.34em; color: var(--fg); font-size: clamp(13px, 1.8vw, 19px); }

/* COUNTRY RISK BRIEF */
.brief-form { max-width: 760px; margin: 40px auto 0; }
.brief-hp { position: absolute; left: -9999px; }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brief-form input {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--fg); font-family: var(--font-body); font-size: 14.5px; padding: 14px 15px;
  transition: border-color .2s;
}
.brief-form input::placeholder { color: var(--faint); }
.brief-form input:focus { outline: none; border-color: var(--accent); }
.brief-submit { width: 100%; justify-content: center; margin-top: 16px; }
.brief-fine { text-align: center; color: var(--faint); font-size: 12px; margin-top: 14px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; }
.brief-done { text-align: center; padding: 16px 0; }
.brief-check { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #F4C24A, #C8881F); }
.brief-check svg { width: 26px; height: 26px; color: #1a1206; }
.brief-done h3 { font-size: clamp(22px, 3.5vw, 30px); }
.brief-done p { color: var(--muted); margin-top: 14px; line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; font-size: 15px; }
@media (max-width: 560px) { .brief-grid { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-head h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); font-size: clamp(22px, 3vw, 30px); text-align: center; }
.contact-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 0; margin-top: 30px; }
.contact-row .item { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 15px; letter-spacing: 0.01em; transition: color .25s; }
.contact-row a.item:hover { color: var(--fg); }
.contact-row .item svg { width: 17px; height: 17px; color: var(--accent); }
.contact-row .sep { width: 1px; height: 16px; background: hsl(43 74% 52% / .3); margin: 0 26px; }

/* FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.foot-cta { border-bottom: 1px solid var(--border); display: flex; justify-content: center; padding: 22px 0; }
.foot-main { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.2fr; gap: 40px; padding: 56px 0; }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.foot-brand img { height: 56px; }
.foot-brand .wm { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 18px; }
.foot-brand .wm b { color: var(--accent); }
.foot-brand .tag { color: var(--faint); font-size: 12px; max-width: 220px; line-height: 1.5; }
.foot-col h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--accent); margin-bottom: 18px; font-weight: 600; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { color: var(--muted); font-size: 13px; transition: color .25s; }
.foot-col a:hover { color: var(--accent); }
.foot-social { display: flex; gap: 14px; margin-bottom: 28px; }
.foot-social a { color: var(--faint); transition: color .25s; }
.foot-social a:hover { color: var(--accent); }
.foot-social svg { width: 17px; height: 17px; }
.foot-partners { display: flex; flex-direction: column; gap: 14px; }
.foot-partners img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .7; transition: opacity .3s; }
.foot-partners a:hover img { opacity: 1; }
.foot-sub { border-top: 1px solid var(--border); text-align: center; padding: 16px 0; }
.foot-sub span { color: var(--faint); font-size: 11px; letter-spacing: 0.03em; }

/* ============================================================
   SUBPAGES — service detail + legal
   ============================================================ */
.subpage { padding-top: 0; }
.svc-hero { position: relative; overflow: hidden; min-height: 60vh; display: flex; align-items: flex-end; padding: 150px 0 56px; border-bottom: 1px solid var(--border); }
.svc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.98) contrast(1.06) saturate(1.05); }
.svc-hero-bg::after { content: ""; position: absolute; inset: 0; background:
   linear-gradient(to right, var(--bg) 0%, hsl(0 0% 0% / .55) 30%, hsl(0 0% 0% / .12) 66%, transparent 100%),
   linear-gradient(to top, var(--bg) 2%, hsl(0 0% 0% / .2) 30%, transparent 55%); }
.svc-hero .shell { position: relative; z-index: 2; width: 100%; }
.svc-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--accent); margin-bottom: 26px; transition: gap .25s; }
.svc-back svg { width: 14px; height: 14px; }
.svc-back:hover { gap: 13px; }
.svc-kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.24em; font-size: 11px; color: var(--faint); margin-bottom: 14px; }
.svc-title { font-family: var(--font-display); font-weight: var(--display-weight); text-transform: var(--display-case); letter-spacing: var(--display-tracking); line-height: 1.04; font-size: clamp(36px, 6vw, 74px); color: #fff; max-width: 16ch; }
.svc-sub { color: hsl(0 0% 100% / .82); font-size: clamp(15px, 1.6vw, 19px); max-width: 640px; margin-top: 20px; line-height: 1.6; }

.svc-intro { max-width: 900px; }
.svc-intro p { color: var(--muted); font-size: clamp(16px, 1.7vw, 20px); line-height: 1.8; }
.svc-intro p + p { margin-top: 18px; }

.svc-acc { margin-top: 50px; max-width: 1000px; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--card); overflow: hidden; transition: border-color .35s; }
.acc-item.open { border-color: hsl(43 74% 52% / .5); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; text-align: left; }
.acc-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; font-size: clamp(15px, 1.7vw, 20px); color: #fff; transition: color .3s; }
.acc-item.open .acc-title { color: var(--accent); }
.acc-ic { color: var(--muted); flex: none; transition: transform .4s ease, color .3s; }
.acc-ic svg { width: 22px; height: 22px; display: block; }
.acc-item.open .acc-ic { transform: rotate(180deg); color: var(--accent); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.22,1,.36,1); }
.acc-item.open .acc-panel { max-height: 1600px; }
.acc-inner { padding: 2px 26px 26px; }
.acc-desc { color: hsl(0 0% 100% / .82); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.65; margin-bottom: 20px; }
.acc-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 30px; margin-bottom: 20px; }
.acc-items li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.45; }
.ai-ic { color: var(--accent); flex: none; margin-top: 1px; }
.ai-ic svg { width: 14px; height: 14px; display: block; }
.acc-closing { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--faint); border-top: 1px solid var(--border); padding-top: 16px; line-height: 1.6; }

.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.other-card { position: relative; height: 220px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); display: block; transition: border-color .4s; }
.other-card:hover { border-color: hsl(43 74% 52% / .55); }
.other-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.45) brightness(0.62); transition: transform .8s ease, filter .5s; }
.other-card:hover img { transform: scale(1.07); filter: grayscale(0) brightness(0.85); }
.other-veil { position: absolute; inset: 0; background: linear-gradient(to top, hsl(0 0% 0% / .92), transparent 72%); }
.other-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; }
.other-num { font-family: var(--font-mono); color: var(--accent); font-size: 12px; letter-spacing: 0.1em; }
.other-card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; font-size: 17px; margin-top: 5px; color: #fff; transition: color .3s; }
.other-card:hover h3 { color: var(--accent); }

/* legal */
.legal-main { padding: 132px 0 40px; }
.legal-wrap { max-width: 780px; }
.legal-wrap h1 { font-family: var(--font-display); font-weight: var(--display-weight); text-transform: var(--display-case); letter-spacing: var(--display-tracking); font-size: clamp(30px, 4.5vw, 48px); color: #fff; }
.legal-updated { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--faint); margin: 14px 0 8px; }
.legal-rule { margin: 24px 0 36px; max-width: 88px; }
.legal-body h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: clamp(17px, 2vw, 22px); color: var(--accent); margin: 40px 0 14px; }
.legal-body h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; font-size: 15px; color: #fff; margin: 26px 0 10px; }
.legal-body p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-size: 15.5px; }
.legal-body ul { margin: 0 0 16px; padding-left: 0; }
.legal-body li { color: var(--muted); line-height: 1.6; margin: 8px 0 8px 24px; list-style: none; position: relative; font-size: 15px; }
.legal-body li::before { content: ""; position: absolute; left: -18px; top: 10px; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

@media (max-width: 700px) {
  .acc-items { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .acc-head { padding: 18px 18px; }
  .acc-inner { padding: 2px 18px 22px; }
}

/* ============================================================
   DRTB ADVISOR (interactive concierge)
   ============================================================ */
#drtbAdvisor { position: fixed; z-index: 120; }
.adv-fab { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.adv-fab-glow { position: absolute; inset: -6px; border-radius: 50%; background: var(--accent); opacity: .28; filter: blur(14px); transition: opacity .4s; }
.adv-fab:hover .adv-fab-glow { opacity: .5; }
.adv-fab-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--accent); opacity: .25; animation: advping 2.4s ease-out infinite; }
@keyframes advping { 0% { transform: scale(1); opacity: .35; } 100% { transform: scale(1.7); opacity: 0; } }
.adv-fab-core { position: relative; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #F4C24A, #C8881F); border: 1px solid hsl(43 70% 60% / .6); box-shadow: 0 10px 30px -6px hsl(43 80% 40% / .6); }
.adv-fab-core svg { width: 26px; height: 26px; color: #1a1206; }
.adv-fab-dot { position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg); }

.adv-panel { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: 392px; max-width: calc(100vw - 28px); height: 580px; max-height: calc(100vh - 44px);
  display: flex; flex-direction: column; overflow: hidden; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px hsl(0 0% 0% / .85); transform: translateY(24px) scale(.97); opacity: 0; transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s; }
.adv-panel.show { transform: none; opacity: 1; }
.adv-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }

.adv-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.adv-brand { display: flex; align-items: center; gap: 12px; }
.adv-badge { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #F4C24A, #C8881F); }
.adv-badge svg { width: 17px; height: 17px; color: #1a1206; }
.adv-brand-t { display: flex; flex-direction: column; gap: 2px; }
.adv-brand-n { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; color: var(--fg); font-weight: 600; }
.adv-brand-s { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em; font-size: 9px; color: var(--accent); }
.adv-close { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--muted); border-radius: var(--radius); transition: color .2s; }
.adv-close:hover { color: var(--accent); }
.adv-close svg { width: 18px; height: 18px; }

.adv-body { position: relative; flex: 1; overflow-y: auto; padding: 20px 18px; }
.adv-body::-webkit-scrollbar { width: 0; }
.adv-lead { font-size: 13.5px; line-height: 1.65; color: hsl(0 0% 100% / .82); }
.adv-sect { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; color: var(--accent); margin: 20px 0 12px; }
.adv-list { display: flex; flex-direction: column; gap: 8px; }
.adv-item { display: grid; grid-template-columns: 38px 1fr 16px; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 12px 13px; border: 1px solid var(--border); border-radius: var(--radius); background: hsl(0 0% 100% / .015); transition: background .2s, border-color .2s; }
.adv-item-ic { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; color: var(--accent); transition: border-color .25s, background .25s; }
.adv-item-ic svg { width: 18px; height: 18px; }
.adv-item-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.adv-item-n { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: 13.5px; color: var(--fg); white-space: nowrap; }
.adv-item-s { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adv-item-go { color: var(--faint); transition: color .2s, transform .2s; }
.adv-item-go svg { width: 15px; height: 15px; display: block; }
.adv-item:hover { background: hsl(43 74% 52% / .08); border-color: hsl(43 74% 52% / .4); }
.adv-item:hover .adv-item-ic { border-color: var(--accent); background: hsl(43 74% 52% / .1); }
.adv-item:hover .adv-item-n { color: var(--accent); }
.adv-item:hover .adv-item-go { color: var(--accent); transform: translateX(3px); }
.adv-urgent .adv-item-ic { color: #E78070; }
.adv-urgent:hover { background: hsl(8 70% 50% / .1); border-color: hsl(8 70% 55% / .45); }
.adv-urgent:hover .adv-item-ic { border-color: #E78070; background: hsl(8 70% 50% / .12); }
.adv-urgent:hover .adv-item-n { color: #E78070; }

.adv-dhead { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.adv-ditic { width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid hsl(43 74% 52% / .4); color: var(--accent); }
.adv-ditic svg { width: 20px; height: 20px; }
.adv-dhead .adv-h { margin-bottom: 0; }
.adv-ditic.urgent { border-color: hsl(8 70% 55% / .5); color: #E78070; }

.adv-caplabel { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; color: var(--accent); margin: 18px 0 10px; }
.adv-caps { display: flex; flex-direction: column; gap: 8px; }
.adv-caps li { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.4; color: hsl(0 0% 100% / .82); }
.adv-caps li svg { width: 14px; height: 14px; color: var(--accent); flex: none; margin-top: 1px; }
.adv-fineprint { font-size: 10.5px; color: var(--faint); text-align: center; margin-top: 4px; }

.adv-back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; color: var(--muted); transition: color .2s; margin-bottom: 16px; }
.adv-back svg { width: 13px; height: 13px; }
.adv-back:hover { color: var(--accent); }
.adv-center { display: flex; margin: 8px auto 0; }
.adv-h { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 14px; color: var(--accent); margin-bottom: 12px; }
.adv-p { font-size: 13px; line-height: 1.65; color: hsl(0 0% 100% / .85); }
.adv-tag { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.15em; font-size: 10.5px; color: hsl(43 74% 52% / .8); margin-bottom: 14px; }

.adv-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.adv-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--radius); border: 1px solid var(--border); background: hsl(43 74% 52% / .05); color: hsl(0 0% 100% / .85); font-size: 12px; font-family: var(--font-body); cursor: pointer; transition: all .2s; }
.adv-btn svg { width: 13px; height: 13px; }
.adv-btn:hover { background: hsl(43 74% 52% / .14); border-color: hsl(43 74% 52% / .45); color: var(--accent); }
.adv-btn.gold { background: linear-gradient(145deg, #F4C24A, #C8881F); color: #1a1206; border-color: transparent; font-weight: 600; }
.adv-btn.gold:hover { filter: brightness(1.08); color: #1a1206; }

.adv-form { display: flex; flex-direction: column; gap: 10px; }
.adv-form input, .adv-form textarea { width: 100%; background: transparent; border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 13px; font-family: var(--font-body); font-size: 13.5px; color: var(--fg); transition: border-color .2s; resize: none; }
.adv-form input:focus, .adv-form textarea:focus { outline: none; border-color: hsl(43 74% 52% / .6); }
.adv-submit { width: 100%; justify-content: center; padding: 12px; font-size: 13.5px; margin-top: 2px; }

.adv-done { text-align: center; padding-top: 24px; }
.adv-check { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #F4C24A, #C8881F); }
.adv-check svg { width: 24px; height: 24px; color: #1a1206; }
.adv-done-t { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.adv-or { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.15em; font-size: 10px; color: var(--muted); margin: 26px 0 14px; }
.adv-done .adv-actions { justify-content: center; }

.adv-foot { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 11px; border-top: 1px solid var(--border); background: hsl(0 0% 100% / .015); }
.adv-foot a { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; color: var(--muted); transition: color .2s; }
.adv-foot a svg { width: 13px; height: 13px; }
.adv-foot a:hover { color: var(--accent); }
.adv-conf { text-align: center; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.25em; font-size: 8.5px; color: var(--faint); padding: 7px; border-top: 1px solid var(--border); }

@media (max-width: 480px) {
  .adv-panel { right: 0; bottom: 0; width: 100%; max-width: 100%; height: 82vh; border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) { .adv-fab-ring { animation: none; } }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.cm-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: hsl(0 0% 0% / .72); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .28s;
}
.cm-overlay.show { opacity: 1; }
.cm-box {
  position: relative; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  background: var(--card); border: 1px solid var(--border); border-top: 2px solid var(--accent);
  border-radius: var(--radius); padding: 40px; transform: translateY(16px) scale(.98); transition: transform .3s;
  box-shadow: 0 40px 120px -30px hsl(0 0% 0% / .8);
}
.cm-overlay.show .cm-box { transform: none; }
.cm-box h3 { font-size: clamp(24px, 4vw, 32px); margin-top: 10px; }
.cm-close { position: absolute; top: 16px; right: 18px; font-size: 28px; line-height: 1; color: var(--faint); transition: color .2s; }
.cm-close:hover { color: var(--accent); }
.cm-note { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.6; }
.cm-form { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.cm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cm-field { display: flex; flex-direction: column; gap: 7px; }
.cm-field label { font-family: var(--eyebrow-family); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10.5px; color: var(--muted); }
.cm-field input, .cm-field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--fg); font-family: var(--font-body); font-size: 14px; padding: 11px 13px; resize: vertical;
  transition: border-color .2s;
}
.cm-field input:focus, .cm-field textarea:focus { outline: none; border-color: var(--accent); }
.cm-alt { text-align: center; color: var(--faint); font-size: 12px; margin-top: 4px; }
.cm-alt a { color: var(--muted); }
.cm-alt a:hover { color: var(--accent); }
.cm-success { text-align: center; padding: 20px 0; }
.cm-check { width: 56px; height: 56px; margin: 0 auto 20px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 26px; }
@media (max-width: 560px) { .cm-grid { grid-template-columns: 1fr; } .cm-box { padding: 30px 22px; } }

/* WhatsApp floating button */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px hsl(145 70% 30% / .45);
  transition: transform .25s, box-shadow .25s;
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 34px hsl(145 70% 30% / .6); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg img, .hero-glow, .ticker-track, .hero .mouse { animation: none !important; }
}

/* ============================================================
   RESPONSIVE — MOBILE PREMIUM
   ============================================================ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {

  /* NAV */
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; color: var(--fg);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color .25s, color .25s;
  }
  .nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

  /* MOBILE MENU — full-screen overlay */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 54;
    background: hsl(32 14% 5% / 0.97);
    backdrop-filter: blur(18px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 0;
    padding: 80px var(--gutter) 48px;
    opacity: 0; pointer-events: none;
    transition: opacity .35s cubic-bezier(.22,1,.36,1);
  }
  .mobile-menu::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a, .mobile-menu button {
    display: block; width: 100%; text-align: center;
    padding: 22px 0;
    font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: 0.28em; font-size: 18px;
    color: hsl(0 0% 100% / .75);
    border-bottom: 1px solid var(--border);
    transition: color .25s, letter-spacing .25s;
  }
  .mobile-menu a:first-child { border-top: 1px solid var(--border); }
  .mobile-menu a:hover, .mobile-menu button:hover { color: var(--accent); letter-spacing: 0.36em; }
  .mobile-menu button[data-open-contact] {
    margin-top: 32px; border: 1px solid var(--accent);
    color: var(--accent); border-radius: var(--radius);
    letter-spacing: 0.22em; font-size: 14px; padding: 16px 0;
  }

  /* HERO — compact, content at bottom, stats immediately visible */
  .hero { min-height: 0; height: auto; }
  .hero-content {
    padding-top: 86px; padding-bottom: 44px;
    justify-content: flex-end;
    min-height: 72svh;
  }
  .hero h1 { font-size: clamp(34px, 9vw, 54px); max-width: 100%; }
  .hero .sub { font-size: 15px; max-width: 100%; margin-top: 14px; }
  .hero .cta-row { margin-top: 22px; }
  .hero .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* SECTION PADDING — compact on mobile */
  .band { padding: clamp(32px, 5vw, 52px) 0; }
  .band-tight { padding: clamp(28px, 4vw, 44px) 0; }

  /* STATS — 2×2 grid clean */
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
  .stat-item {
    padding: 24px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+5) { border-bottom: none; }
  .stat-sep { display: none; }
  .stat-num { font-size: clamp(32px, 8vw, 48px); }
  .stat-label { font-size: 9px; letter-spacing: 0.14em; white-space: normal; text-align: center; line-height: 1.6; }

  /* WHO WE ARE — compact */
  .who .big { font-size: clamp(17px, 4vw, 22px); margin-top: 20px !important; }
  .who .sub { font-size: clamp(14px, 3.5vw, 17px); }
  .who .rule-sm { margin: 24px auto !important; }

  /* OUR IDENTITY — horizontal carousel */
  .cards-3 {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; margin-top: 24px; padding-bottom: 10px;
    scrollbar-width: none;
  }
  .cards-3::-webkit-scrollbar { display: none; }
  .card {
    flex: 0 0 72vw; max-width: 280px;
    scroll-snap-align: start;
    padding: 28px 20px;
  }
  .card:last-child { margin-right: var(--gutter); }
  .card .ic { width: 44px; height: 44px; margin-bottom: 16px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; margin-top: 10px; }

  /* TESTIMONIALS — horizontal carousel */
  .quotes {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; margin-top: 24px; padding-bottom: 10px;
    scrollbar-width: none;
  }
  .quotes::-webkit-scrollbar { display: none; }
  .quote {
    flex: 0 0 80vw; max-width: 320px;
    scroll-snap-align: start;
  }
  .quote:last-child { margin-right: var(--gutter); }

  /* CAPABILITIES — horizontal swipe carousel */
  .cap-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin-top: 28px;
    padding-bottom: 12px;
    /* hide scrollbar but keep functionality */
    scrollbar-width: none;
  }
  .cap-grid::-webkit-scrollbar { display: none; }
  .cap {
    flex: 0 0 78vw;
    max-width: 320px;
    height: 260px;
    scroll-snap-align: start;
  }
  .cap:first-child { margin-left: 0; }
  .cap:last-child { margin-right: var(--gutter); }
  .cap .knum { font-size: 42px; top: 12px; right: 16px; }
  .cap h3 { font-size: 17px; }
  .cap p { font-size: 13px; }
  .cap .explore { padding: 8px 16px; font-size: 11px; }

  /* WHO WE PROTECT — horizontal carousel */
  .wwp-tiles {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px; margin-top: 24px; padding-bottom: 10px;
    scrollbar-width: none;
  }
  .wwp-tiles::-webkit-scrollbar { display: none; }
  .wwp-tile, .wwp-tile:nth-child(n+5) {
    grid-column: unset;
    flex: 0 0 68vw; max-width: 260px;
    height: 200px; scroll-snap-align: start;
  }

  /* METHOD */
  .method { flex-direction: column; min-height: 0; gap: 10px; }
  .method-line { display: none; }
  .step { flex: none; border-radius: var(--radius); }
  .step .vtitle {
    position: static; transform: none; writing-mode: horizontal-tb;
    padding: 20px 22px; font-size: 13px; letter-spacing: 0.16em; color: hsl(0 0% 100% / .75);
  }
  .step.active .vtitle { display: block; color: var(--accent); }
  .step .bignum { font-size: 80px; top: 0; right: 10px; left: auto; transform: none; }
  .step.active .bignum { font-size: 80px; color: hsl(43 74% 52% / .18); }
  .step .expand { position: static; opacity: 1; padding: 0 22px 24px; }
  .step:not(.active) .expand { display: none; }
  .step .expand .tick { margin-top: 4px; width: 36px; }
  .step .expand h3 { font-size: clamp(18px, 4vw, 22px); }
  .step .expand p { font-size: 15px; max-width: 100%; }

  /* CONTACT */
  .contact-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .contact-row .sep { display: none; }
  .contact-row .item { font-size: 15px; }

  /* ════════ FOOTER — tier-1 mobile layout ════════ */
  .foot-cta { padding: 20px var(--gutter); }
  .foot-cta .btn { width: 100%; max-width: 380px; justify-content: center; }

  .foot-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 0;
    padding: 36px var(--gutter) 8px;
    text-align: left;
  }

  /* Brand block — centered, own row, breathing room below */
  .foot-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  .foot-brand img { height: 46px; }
  .foot-brand .wm { font-size: 16px; }
  .foot-brand .tag { display: block; font-size: 11px; max-width: 240px; }

  /* Quick Access + Legal — clean 2 columns */
  .foot-col {
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding-bottom: 32px;
  }
  .foot-col h4 { margin-bottom: 16px; font-size: 10px; letter-spacing: 0.22em; }
  .foot-col li { margin-bottom: 11px; }
  .foot-col a { font-size: 13px; }

  /* Follow Us + Partners — full-width, centered, structured */
  .foot-col:last-child {
    grid-column: 1 / -1;
    display: flex; flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 4px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }
  .foot-col:last-child h4 {
    display: block; width: 100%; text-align: center;
    margin-bottom: 18px;
  }

  /* Social — uniform circular buttons */
  .foot-social {
    margin-bottom: 36px; gap: 14px; justify-content: center;
  }
  .foot-social a {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: border-color .25s, color .25s, background .25s;
  }
  .foot-social a:hover {
    border-color: var(--accent); color: var(--accent);
    background: hsl(43 74% 52% / .08);
  }
  .foot-social svg { width: 18px; height: 18px; }

  /* Partners — normalized 3-up grid, equal weight (defeats inline heights) */
  .foot-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center;
    width: 100%;
    max-width: 360px;
  }
  .foot-partners a {
    display: flex; align-items: center; justify-content: center;
    height: 26px;
  }
  .foot-partners img {
    height: auto !important;
    width: auto;
    max-height: 22px;
    max-width: 100%;
    opacity: .65;
  }

  /* Copyright */
  .foot-sub { padding: 18px 0; text-align: center; }
  .foot-sub span { font-size: 10px; }

  /* SERVICE SUBPAGE */
  .svc-hero { min-height: 50vh; padding: 110px 0 40px; }
  .svc-title { font-size: clamp(32px, 9vw, 52px); }
  .svc-intro { margin-top: 0; }
  .svc-acc { margin-top: 32px; }

  /* Other Capabilities — horizontal carousel */
  .other-grid {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; margin-top: 32px; padding-bottom: 10px;
    scrollbar-width: none;
  }
  .other-grid::-webkit-scrollbar { display: none; }
  .other-card {
    flex: 0 0 72vw; max-width: 300px;
    height: 200px; scroll-snap-align: start;
  }
  .other-card:last-child { margin-right: var(--gutter); }
}

/* ── Mobile (≤ 560px) ── */
@media (max-width: 560px) {

  /* HERO */
  .hero h1 { font-size: clamp(34px, 11vw, 48px); }

  /* STATS */
  .stat-num { font-size: clamp(32px, 10vw, 46px); }

  /* CAPABILITIES */
  .cap { height: 240px; }

  /* WHO WE PROTECT — keep carousel on small screens */
  .wwp-tile, .wwp-tile:nth-child(n+5) { height: 185px; flex: 0 0 72vw; }

  /* FOOTER — slightly tighter columns */
  .foot-main { column-gap: 14px; padding: 32px var(--gutter) 8px; }

  /* ACC */
  .acc-items { grid-template-columns: 1fr; }
  .acc-head { padding: 18px; }
  .acc-inner { padding: 2px 18px 22px; }

  /* CONTACT ROW centered */
  .contact-row { align-items: center; }

  /* MODAL */
  .cm-grid { grid-template-columns: 1fr; }
  .cm-box { padding: 30px 20px; }

  /* ADV PANEL */
  .adv-panel { right: 0; bottom: 0; width: 100%; max-width: 100%; height: 82vh; border-radius: 0; }
}

/* ============================================================
   MOBILE SWIPE HINT (carousels)
   ============================================================ */
.swipe-hint { display: none; }
@media (max-width: 900px) {
  .swipe-hint {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px;
    font-family: var(--font-mono); text-transform: uppercase;
    letter-spacing: 0.2em; font-size: 10px; color: var(--accent);
    opacity: .85; transition: opacity .45s ease;
  }
  .swipe-hint.gone { opacity: 0; pointer-events: none; }
  .swipe-hint svg { width: 16px; height: 16px; animation: swipeNudge 1.5s ease-in-out infinite; }
}
@keyframes swipeNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (prefers-reduced-motion: reduce) { .swipe-hint svg { animation: none; } }
