/* =========================================================================
   SPIDER SECURITY SERVICES — warm editorial theme
   Reproduces the "warm cream / rounded / soft-shadow / pill" design language
   (studied from a reference, written fresh here — no code copied) with the
   Spider logo BLUE throughout (deep blue for CTAs, lighter blue for accents).
   Type: Schibsted Grotesk (display) · Figtree (body).
   3D lives inside dark rounded cards so it reads against the light page.
   Progressive enhancement: content is fully visible with no JS / no WebGL.
   ========================================================================= */

:root {
  /* ink + surfaces (warm) */
  --ink:      #0B2436;
  --cream:    #F6F3EC;
  --cream-2:  #EFE9DD;
  --paper:    #FFFFFF;
  --muted:    #5B6E7C;
  --muted-2:  #8194A0;

  /* brand blue (from the logo) — replaces the reference teal */
  --blue-50:  #EAF4FB;
  --blue-100: #CFE6F5;
  --blue-300: #8FCDEC;
  --blue-500: #2EA6E0;   /* logo */
  --blue-600: #1E88C4;   /* primary UI */
  --blue-700: #176A99;
  --blue-800: #124A6E;
  --blue-900: #0E3A57;

  /* dark bands (deep navy for the 3D moments) */
  --navy:     #0A2338;
  --navy-2:   #0C2C46;
  --d-head:   #EAF3FB;
  --d-body:   #9FB6C8;
  --d-mut:    #6E869A;
  --d-line:   rgba(255,255,255,.12);

  /* CTA / action accent — deep vivid blue (token names kept for brevity) */
  --coral:     #1786C6;
  --coral-600: #1270A8;
  --coral-700: #0E5985;
  --coral-50:  #E9F3FB;
  --amber:     #F4B455;

  --line:   rgba(11,36,54,.10);
  --line-2: rgba(11,36,54,.06);

  --shadow-sm:  0 1px 2px rgba(11,36,54,.06), 0 1px 3px rgba(11,36,54,.05);
  --shadow:     0 6px 18px -6px rgba(11,36,54,.14), 0 2px 6px rgba(11,36,54,.06);
  --shadow-lg:  0 30px 64px -26px rgba(11,36,54,.32), 0 8px 24px -12px rgba(11,36,54,.16);
  --shadow-cta: 0 10px 24px -8px rgba(23,134,198,.5), 0 2px 6px rgba(18,112,168,.3);

  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --maxw: 1440px; --pad: clamp(18px, 3.5vw, 32px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: "Figtree", system-ui, -apple-system, sans-serif;
  color: var(--ink); background: var(--cream); font-size: 17px; line-height: 1.6;
  letter-spacing: -.005em; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
h1,h2,h3,h4 { font-family: "Schibsted Grotesk", "Figtree", sans-serif; font-weight: 700; line-height: 1.04; letter-spacing: -.02em; margin: 0; text-wrap: balance; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--blue-500); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 3px; border-radius: 4px; }
.vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.eyebrow, .tag { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-700); display: inline-flex; align-items: center; gap: .6em; font-family: "Figtree", sans-serif; }
.eyebrow::before, .tag::before { content: ""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }
.tag.plain::before { display: none; }
.h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.03em; }
.h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); letter-spacing: -.025em; }
.h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; max-width: 58ch; }
.accent { color: var(--blue-600); }

/* buttons — pill */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .95rem; padding: .95rem 1.5rem; border-radius: 999px; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn .ar { transition: transform .25s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--coral-600); box-shadow: 0 16px 30px -8px rgba(23,134,198,.6); }
.btn--ghost { background: var(--paper); color: var(--blue-800); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue-300); }
.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border-color: var(--d-line); }
.btn--onDark:hover { background: rgba(255,255,255,.16); border-color: var(--blue-300); }
.btn--block { width: 100%; }
.btn--sm { padding: .7rem 1.1rem; font-size: .86rem; }

/* pill trust badge */
.pill { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--blue-800); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .85rem; box-shadow: var(--shadow-sm); }
.pill .ic { width: 20px; height: 20px; border-radius: 6px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-size: .7rem; font-weight: 800; flex: none; font-family: "Schibsted Grotesk",sans-serif; }

[data-reveal] { will-change: transform, opacity; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .35s var(--ease), box-shadow .35s, border-color .35s; border-bottom: 1px solid transparent; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 15px; }
.nav.scrolled { background: rgba(246,243,236,.9); backdrop-filter: blur(14px) saturate(1.1); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand b { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; display: block; line-height: 1.05; }
.brand small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a.lnk { padding: .5rem .7rem; font-size: .94rem; font-weight: 600; color: var(--blue-800); border-radius: 8px; transition: background .2s, color .2s; }
.nav__links a.lnk:hover { background: var(--blue-50); color: var(--blue-900); }
.nav__links .btn { margin-left: 8px; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO (split — copy + dark 3D media card)
   ========================================================================= */
.hero { position: relative; padding-top: clamp(104px, 13vw, 150px); padding-bottom: clamp(48px, 7vw, 90px); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(46px); pointer-events: none; z-index: 0; opacity: .5; }
.blob--a { width: 460px; height: 460px; background: radial-gradient(circle, rgba(46,166,224,.4), transparent 70%); top: -120px; right: -60px; }
.blob--b { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,106,77,.28), transparent 70%); bottom: -140px; left: -80px; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.hero__eyebrow { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.03em; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
.hero h1 .it { color: var(--blue-600); font-style: normal; }
.hero__lead { margin: 1.2rem 0 0; max-width: 44ch; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.16rem); }
.hero__lead b { color: var(--ink); font-weight: 700; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: 1.5rem; }
.hero__rating { display: flex; align-items: center; gap: .6rem; margin-top: 1.3rem; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero__rating .stars { color: var(--amber); letter-spacing: .08em; }
.hero__rating b { color: var(--blue-800); }

.hero__figure { position: relative; }
.hero__ring { position: absolute; inset: -18px; z-index: 0; border-radius: var(--r-xl); background: radial-gradient(58% 58% at 60% 34%, rgba(46,166,224,.28), transparent 72%); filter: blur(14px); }
.mediacard { position: relative; z-index: 1; width: 100%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/5.4; background: radial-gradient(120% 90% at 70% 20%, #123454, var(--navy) 70%); border: 1px solid rgba(255,255,255,.06); }
.emblem { position: absolute; inset: 0; display: grid; place-items: center; }
.emblem__web { position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; opacity: .32;
  background:
    repeating-conic-gradient(from 0deg, rgba(111,205,247,.6) 0 .3deg, transparent .3deg 30deg),
    repeating-radial-gradient(circle, transparent 0 26px, rgba(111,205,247,.5) 26px 27px);
  -webkit-mask: radial-gradient(circle, #000 60%, transparent 74%); mask: radial-gradient(circle, #000 60%, transparent 74%);
  animation: emblem-spin 46s linear infinite; }
.emblem__glow { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(46,166,224,.45), transparent 62%); filter: blur(16px); animation: emblem-pulse 4.6s ease-in-out infinite; }
.emblem__mark { position: relative; z-index: 1; width: 45%; filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(111,205,247,.5)); animation: emblem-pulse 4.6s ease-in-out infinite; }
@keyframes emblem-spin { to { transform: rotate(360deg); } }
@keyframes emblem-pulse { 0%,100% { opacity: .9; transform: scale(1); } 50% { opacity: 1; transform: scale(1.045); } }
.ribbon { position: absolute; top: 16px; right: 16px; z-index: 3; background: var(--coral); color: #fff; border-radius: 12px; padding: .5rem .75rem; text-align: center; box-shadow: var(--shadow-cta); font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: .72rem; letter-spacing: .02em; line-height: 1.15; }
.float-chip { position: absolute; z-index: 3; left: -14px; bottom: 24px; background: rgba(255,255,255,.94); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.7); border-radius: 14px; padding: .7rem .9rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; }
.float-chip .fc-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; background: linear-gradient(150deg, var(--blue-500), var(--blue-700)); font-size: .8rem; }
.float-chip .fc-num { display: block; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1; color: var(--ink); margin-bottom: 2px; }
.float-chip .fc-lab { display: block; font-size: .72rem; color: var(--muted); line-height: 1.15; }

/* =========================================================================
   TRUSTBAR (dark strip)
   ========================================================================= */
/* =========================================================================
   DARK AURORA COVER HERO (cursor-lit wordmark)
   ========================================================================= */
.hero--cover { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; text-align: center;
  background: radial-gradient(125% 92% at 78% -10%, #142a4d 0%, #0a1730 44%, #050b18 100%); color: var(--d-head); padding: 96px 0 64px; }
.aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.aur { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; mix-blend-mode: screen; will-change: transform; }
.aur1 { width: 62vw; height: 62vw; left: -10vw; top: -20vw; background: radial-gradient(circle, rgba(46,166,224,.62), transparent 60%); animation: aur-a 22s ease-in-out infinite; }
.aur2 { width: 56vw; height: 56vw; right: -12vw; top: 4vw; background: radial-gradient(circle, rgba(58,110,224,.5), transparent 60%); animation: aur-b 27s ease-in-out infinite; }
.aur3 { width: 52vw; height: 52vw; left: 22vw; bottom: -24vw; background: radial-gradient(circle, rgba(120,88,224,.42), transparent 62%); animation: aur-c 31s ease-in-out infinite; }
@keyframes aur-a { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6vw,4vw) scale(1.12)} }
@keyframes aur-b { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,3vw) scale(1.15)} }
@keyframes aur-c { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,-5vw) scale(1.1)} }
.hero--cover::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(120% 82% at 50% 42%, transparent 42%, rgba(5,11,24,.55) 100%); }
.hero__spot { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(340px 340px at var(--sx,58%) var(--sy,40%), rgba(90,200,247,.16), transparent 70%); }
.hero__cover { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 1000px; padding-inline: var(--pad); }
.tag--onDark { color: var(--blue-300); }
.tag--onDark::before { background: var(--blue-300); }

.wordmark { position: relative; display: inline-block; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(2.4rem, 7.4vw, 6rem); line-height: .92; letter-spacing: -.03em; margin: 2px 0; --mx: 50%; --my: 45%; }
.wordmark__base { display: block; color: transparent; -webkit-text-stroke: 1.2px rgba(178,208,255,.34); }
.wordmark__lit { position: absolute; inset: 0; color: transparent; background: linear-gradient(100deg, #6AA6FF, #7FE3FF 46%, #ffffff 78%); -webkit-background-clip: text; background-clip: text;
  -webkit-mask: radial-gradient(circle 250px at var(--mx) var(--my), #000 0%, rgba(0,0,0,.55) 42%, transparent 72%); mask: radial-gradient(circle 250px at var(--mx) var(--my), #000 0%, rgba(0,0,0,.55) 42%, transparent 72%);
  filter: drop-shadow(0 0 24px rgba(90,200,247,.4)); }

.hero__cover .hero__lead--onDark { color: #B9C7DC; max-width: 58ch; margin: 4px auto 0; }
.hero__cta--center { justify-content: center; }
.hero__pills--center { justify-content: center; }
.pill--onDark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #D7E2F0; box-shadow: none; }

.hero__scrollhint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; display: grid; justify-items: center; padding-top: 8px; }
.hero__scrollhint span { width: 4px; height: 8px; border-radius: 4px; background: var(--blue-300); animation: scrollhint 1.8s ease-in-out infinite; }
@keyframes scrollhint { 0%{transform:translateY(0);opacity:1} 60%{transform:translateY(11px);opacity:0} 100%{opacity:0} }

/* hero aura — soft drifting light field behind the hero content */
.hero__aura { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; transition: transform .5s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.hero__aur { position: absolute; border-radius: 50%; filter: blur(58px); will-change: transform; }
.hero__aur--1 { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; top: -13vw; right: -6vw; background: radial-gradient(circle, rgba(46,166,224,.42), transparent 68%); animation: heroaur-a 22s ease-in-out infinite; }
.hero__aur--2 { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; bottom: -18vw; left: -8vw; background: radial-gradient(circle, rgba(23,134,198,.30), transparent 66%); animation: heroaur-b 28s ease-in-out infinite; }
.hero__aur--3 { width: 34vw; height: 34vw; max-width: 480px; max-height: 480px; top: 26%; left: 42%; background: radial-gradient(circle, rgba(255,106,77,.16), transparent 64%); animation: heroaur-c 32s ease-in-out infinite; }
@keyframes heroaur-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4vw,3vw) scale(1.1); } }
@keyframes heroaur-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw,-3vw) scale(1.12); } }
@keyframes heroaur-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3vw,4vw) scale(1.08); } }

/* hero background wordmark — invisible at rest, revealed + parallaxed on scroll (3D-ish depth) */
.hero__watermark { position: absolute; z-index: 0; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 130%; text-align: center;
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(3.2rem, 15vw, 13rem); line-height: .82; letter-spacing: -.045em;
  color: transparent; background: linear-gradient(100deg, var(--blue-300), var(--blue-500) 52%, var(--blue-700)); -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 1.4px rgba(30,136,196,.20);
  pointer-events: none; user-select: none; opacity: .12; will-change: transform, opacity; }

/* compliance emblem panel — spider on the moving web */
.emblempanel { position: relative; width: 100%; max-width: 380px; margin-inline: auto; }

/* ---- Hero aurora variant (dark, flowing WebGL aura behind the copy) ---- */
.hero--aurora { position: relative; overflow: hidden; display: flex; align-items: center; min-height: 88vh;
  background: radial-gradient(125% 92% at 80% -10%, #163057 0%, #0a1730 46%, #050b18 100%); }
.hero--aurora .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero--aurora > .wrap { position: relative; z-index: 1; }
.hero--aurora .hero__copy { max-width: 660px; align-self: center; }
.hero--aurora h1 { color: #EAF3FB; }
.hero--aurora h1 .it { color: #7FD0F5; }
.hero--aurora .hero__lead { color: #B9C7DC; }
.hero--aurora .hero__lead b { color: #fff; }
.hero--aurora .hero__rating { color: #9fb2c9; }
.hero--aurora .hero__rating b { color: #cfe0f2; }
.hero--aurora .hero__eyebrow .tag { color: #7FD0F5; }
.hero--aurora .hero__eyebrow .tag::before { background: #7FD0F5; }
.hero--aurora .pill { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #D7E2F0; box-shadow: none; }
.hero--aurora .pill .ic { color: #7FD0F5; }
.hero--aurora .btn--ghost { color: #EAF3FB; border-color: rgba(255,255,255,.28); }
.hero--aurora .btn--ghost:hover { background: rgba(255,255,255,.08); }
.hero--aurora .hero__grid { align-items: stretch; }
.hero__guard { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: center; min-height: 78vh; }
.hero__guard::before { content: ""; position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%); width: 74%; height: 40%; z-index: 0;
  background: radial-gradient(closest-side, rgba(28,124,184,.42), transparent 74%); filter: blur(26px); pointer-events: none; }
.hero__guard img { position: relative; z-index: 1; width: auto; max-width: 100%; max-height: 82vh; height: auto;
  filter: drop-shadow(0 26px 54px rgba(3,9,20,.6)); }
@media (max-width: 820px) {
  .hero--aurora .hero__copy { text-align: center; margin-inline: auto; max-width: 620px; }
  .hero--aurora .hero__eyebrow, .hero--aurora .hero__pills, .hero--aurora .hero__cta, .hero--aurora .hero__rating { justify-content: center; }
  .hero--aurora .hero__lead { margin-inline: auto; }
}

/* nav stays readable over the dark hero at the top; reverts once scrolled (cream) */
.nav:not(.scrolled) .brand { color: #EAF3FB; }
.nav:not(.scrolled) .brand small { color: rgba(234,243,251,.7); }
.nav:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
@media (min-width: 821px) {
  .nav:not(.scrolled) .nav__links a.lnk { color: #E7EEF7; }
  .nav:not(.scrolled) .nav__links a.lnk:hover { background: rgba(255,255,255,.12); color: #fff; }
}

@media (max-width: 820px) {
  .wordmark__lit { -webkit-mask: none; mask: none; }
}

.trustbar { background: var(--navy); color: #fff; overflow: hidden; }
.tb-marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tb-track { display: flex; align-items: center; width: max-content; padding-block: 1.15rem; animation: tb-scroll 42s linear infinite; }
.trustbar:hover .tb-track { animation-play-state: paused; }
.trustbar .titem { display: inline-flex; align-items: center; gap: .6rem; white-space: nowrap; margin-right: 2.4rem; font-size: .92rem; font-weight: 600; color: var(--d-body); }
.trustbar .titem::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); flex: none; }
@keyframes tb-scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   ABOUT / RECORD
   ========================================================================= */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.about__body { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.about__body p { font-size: 1.08rem; line-height: 1.7; color: var(--muted); }
.about__body p b { color: var(--ink); font-weight: 700; }
.values { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 4px; }
.values span { font-size: .8rem; font-weight: 600; color: var(--blue-800); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .8rem; box-shadow: var(--shadow-sm); }
.record { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px 24px; box-shadow: var(--shadow-sm); }
.record__row { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.record__row:last-child { border-bottom: 0; }
.record__k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); }
.record__v { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); line-height: 1.15; }
.record__v small { display: block; font-family: "Figtree", sans-serif; font-weight: 400; font-size: .86rem; color: var(--muted); margin-top: 3px; }

/* =========================================================================
   CAPABILITIES (alternating rounded photo cards)
   ========================================================================= */
.cap { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 100px); margin-top: 52px; }
.cap__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.cap__row:nth-child(even) .cap__media { order: 2; }
.cap__media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-lg); background: var(--blue-50); }
.cap__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cap__media figcaption { position: absolute; left: 16px; bottom: 14px; font-size: .74rem; font-weight: 700; letter-spacing: .04em; color: #fff; background: rgba(11,36,54,.45); backdrop-filter: blur(4px); padding: .34rem .7rem; border-radius: 999px; }
.cap__no { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); }
.cap__t { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.04; color: var(--ink); margin: 12px 0 16px; }
.cap__list { display: flex; flex-direction: column; gap: 10px; max-width: 46ch; }
.cap__list li { display: flex; gap: 12px; font-size: 1.02rem; line-height: 1.5; color: var(--muted); }
.cap__list li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 6px; background: var(--blue-50); box-shadow: inset 0 0 0 1px var(--blue-100); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9.2l2.7 2.7 6.3-6.4' fill='none' stroke='%231E88C4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.cap__list li b { color: var(--ink); font-weight: 700; }
.cap__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 18px; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .92rem; color: var(--coral-600); }
.cap__more:hover { color: var(--coral-700); }

/* =========================================================================
   COVERAGE (dark band with globe)
   ========================================================================= */
.coverage { background: var(--navy); color: var(--d-body); }
.coverage .eyebrow, .coverage .tag { color: var(--blue-300); }
.coverage h2 { color: var(--d-head); }
.coverage .lead { color: var(--d-body); }
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.coverage__map { position: relative; width: 100%; aspect-ratio: 1.37/1; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--d-line); background: #061627; box-shadow: inset 0 0 60px rgba(0,0,0,.4); }
.pkmap__dots { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.coverage__map::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(46% 62% at 45% 80%, rgba(46,166,224,.20), transparent 62%), linear-gradient(0deg, rgba(6,22,39,.35), transparent 55%); }
.cpin { position: absolute; z-index: 3; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cpin i { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-300); box-shadow: 0 0 8px rgba(111,205,247,.8), 0 0 0 0 rgba(111,205,247,.6); animation: cmap-ping 2.4s ease-out infinite; }
.cpin b { font-family: "IBM Plex Mono", monospace; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--d-head); text-shadow: 0 1px 6px rgba(0,0,0,.7); white-space: nowrap; }
.cpin--hq i { width: 12px; height: 12px; background: #fff; }
@keyframes cmap-ping { 0% { box-shadow: 0 0 8px rgba(111,205,247,.8), 0 0 0 0 rgba(111,205,247,.5); } 70% { box-shadow: 0 0 8px rgba(111,205,247,.4), 0 0 0 14px rgba(111,205,247,0); } 100% { box-shadow: 0 0 8px rgba(111,205,247,.4), 0 0 0 0 rgba(111,205,247,0); } }
.coverage__list { display: flex; flex-direction: column; gap: 2px; margin-top: 22px; }
.coverage__list div { display: flex; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--d-line); }
.coverage__list b { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--d-head); min-width: 130px; }
.coverage__list span { font-size: .92rem; color: var(--d-mut); }

/* =========================================================================
   METHOD (sticky sequence)
   ========================================================================= */
.deploy { background: var(--cream-2); }
.deploy__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 68px); align-items: start; }
.deploy__stage { position: sticky; top: 110px; align-self: start; }
.deploy__big { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(72px, 11vw, 150px); line-height: .82; color: var(--blue-100); letter-spacing: -.04em; transition: color .4s var(--ease); }
.deploy__big.on { color: var(--blue-500); }
.deploy__stagelabel { margin-top: 12px; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.deploy__beats { position: relative; display: flex; flex-direction: column; gap: 16px; padding-left: 46px; }
.tl-line { position: absolute; left: 15px; top: 26px; bottom: 26px; width: 2px; border-radius: 2px; background: var(--line-2); z-index: 0; }
.tl-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; border-radius: 2px; background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); box-shadow: 0 0 12px rgba(46,166,224,.55); }
.beat { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.beat.dim { opacity: .55; }
.tl-node { position: absolute; left: -39px; top: 30px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line-2); z-index: 1; transition: background .3s var(--ease), border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.tl-node.on { background: var(--blue-500); border-color: var(--blue-500); box-shadow: 0 0 0 5px rgba(46,166,224,.16); transform: scale(1.12); }
.beat:not(.dim) { border-color: var(--blue-100); }
@media (prefers-reduced-motion: reduce) {
  .tl-fill { height: 100% !important; }
  .tl-node { background: var(--blue-500); border-color: var(--blue-500); }
}
.beat__n { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); }
.beat__t { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--ink); margin: 8px 0 8px; }
.beat__d { font-size: 1rem; line-height: 1.6; color: var(--muted); max-width: 52ch; }

/* =========================================================================
   SECTORS (rounded rows)
   ========================================================================= */
.matrix { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; }
.mrow { display: grid; grid-template-columns: 46px 1.1fr 2fr auto; gap: 20px; align-items: center; padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.mrow:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.mrow__n { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .95rem; color: var(--blue-600); }
.mrow__t { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--ink); }
.mrow__d { font-size: .95rem; color: var(--muted); line-height: 1.5; }
.mrow__ar { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; transition: background .25s, color .25s, transform .25s var(--ease); }
.mrow:hover .mrow__ar { background: var(--coral); color: #fff; transform: translateX(3px); }

/* =========================================================================
   COMPLIANCE (dark band + shield)
   ========================================================================= */
.vault { background: var(--navy); color: var(--d-body); }
.vault .eyebrow, .vault .tag { color: var(--blue-300); }
.vault h2 { color: var(--d-head); }
.vault .lead { color: var(--d-body); }
.vault__grid { display: grid; grid-template-columns: 1fr 400px; gap: clamp(36px, 5vw, 80px); align-items: center; }
.vault__list { margin-top: 24px; display: flex; flex-direction: column; }
.vrow { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--d-line); align-items: baseline; }
.vrow:first-child { border-top: 1px solid var(--d-line); }
.vrow__k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-300); }
.vrow__v b { display: block; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--d-head); margin-bottom: 3px; }
.vrow__v span { font-size: .92rem; line-height: 1.55; color: var(--d-mut); }
.crestbadge { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.crestbadge img { position: relative; z-index: 2; width: 66%; filter: brightness(0) invert(1) drop-shadow(0 8px 22px rgba(0,0,0,.45)); animation: crest-float 6s ease-in-out infinite; }
.crestbadge__ring, .crestbadge__ring2 { position: absolute; border-radius: 50%; }
.crestbadge__ring { width: 74%; aspect-ratio: 1; background: conic-gradient(from 0deg, transparent 0 60%, rgba(46,166,224,.8) 78%, transparent 92%); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px)); mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px)); animation: crest-spin 9s linear infinite; }
.crestbadge__ring2 { width: 92%; aspect-ratio: 1; border: 1px dashed var(--d-line); animation: crest-spin 44s linear infinite reverse; }
@keyframes crest-spin { to { transform: rotate(360deg); } }
@keyframes crest-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gal { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 16px; margin-top: 44px; }
.gcell { position: relative; overflow: hidden; border-radius: var(--r-lg); cursor: pointer; display: block; box-shadow: var(--shadow); background: var(--blue-50); }
.gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gcell:hover img { transform: scale(1.05); }
.gcell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,36,54,.5)); }
.gcell__cap { position: absolute; left: 14px; bottom: 12px; z-index: 1; font-size: .74rem; font-weight: 700; color: #fff; background: rgba(11,36,54,.4); backdrop-filter: blur(4px); padding: .32rem .7rem; border-radius: 999px; }
.gcell--tall { grid-row: span 2; }
.gcell--wide { grid-column: span 2; }

/* =========================================================================
   LEADERSHIP
   ========================================================================= */
.leader__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.leader__portrait { aspect-ratio: 3/4; border-radius: var(--r-xl); overflow: hidden; background: var(--blue-50); box-shadow: var(--shadow-lg); display: grid; place-items: center; }
.leader__portrait .ph { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); text-align: center; line-height: 1.6; }
.leader__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.leader blockquote { margin: 0; font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.22; color: var(--ink); letter-spacing: -.02em; }
.leader blockquote .q { color: var(--blue-500); }
.leader__by { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.leader__by b { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.leader__by span { display: block; font-size: .86rem; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 900px; margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item.open { box-shadow: var(--shadow); border-color: var(--blue-100); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink); }
.faq__sign { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-50); position: relative; transition: background .25s; }
.faq__item.open .faq__sign { background: var(--coral); }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-600); transition: transform .3s var(--ease), background .25s; }
.faq__sign::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq__sign::after { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq__item.open .faq__sign::before, .faq__item.open .faq__sign::after { background: #fff; }
.faq__item.open .faq__sign::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { margin: 0; padding: 0 24px 22px; font-size: 1rem; line-height: 1.65; color: var(--muted); max-width: 66ch; }
.faq__item.open .faq__a { max-height: 260px; }

/* =========================================================================
   CAREERS + CONTACT
   ========================================================================= */
.careers { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; background: linear-gradient(120deg, var(--blue-900), var(--navy)); color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 5vw, 56px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.careers .tag { color: var(--blue-300); }
.careers h3 { color: #fff; }
.careers p { color: var(--d-body); }
.careers__actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.contact__grid { display: grid; grid-template-columns: 1fr 400px; gap: clamp(34px, 5vw, 60px); align-items: start; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); }
.form h3 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea { width: 100%; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font-family: "Figtree", sans-serif; font-size: .96rem; padding: 12px 13px; transition: border-color .2s, background .2s; }
.field textarea { min-height: 104px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: .8rem; color: var(--muted); }
.form__status { font-size: .9rem; font-weight: 600; color: var(--blue-700); }
.channels { display: flex; flex-direction: column; gap: 12px; }
.channel { display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.channel:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.channel__ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue-600); font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: .78rem; }
.channel small { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.channel b { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.channel .sub { display: block; font-size: .84rem; color: var(--muted); margin-top: 1px; }

/* =========================================================================
   FOOTER (dark band)
   ========================================================================= */
.footer { background: var(--navy); color: var(--d-body); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand .row { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer__brand img { width: 38px; height: 38px; object-fit: contain; }
.footer__brand b { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1rem; }
.footer__brand p { font-size: .9rem; line-height: 1.6; color: var(--d-mut); max-width: 320px; }
.footer__col h4 { font-family: "Schibsted Grotesk", sans-serif; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--d-mut); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: var(--d-body); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--d-line); font-size: .82rem; color: var(--d-mut); }

/* =========================================================================
   LIGHTBOX + MOBILE BAR
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 6vh 6vw; background: rgba(11,36,54,.86); backdrop-filter: blur(8px); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.open { display: flex; }
.lightbox.show { opacity: 1; }
.lightbox__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; }
.lightbox__img { max-width: min(1100px,88vw); max-height: 78vh; object-fit: contain; border-radius: var(--r); box-shadow: var(--shadow-lg); transform: scale(.97); transition: transform .35s var(--ease); background: #fff; }
.lightbox.show .lightbox__img { transform: scale(1); }
.lightbox__cap { font-size: .84rem; font-weight: 600; color: #fff; }
.lightbox__count { position: absolute; top: 3.4vh; left: 0; right: 0; text-align: center; font-family: "IBM Plex Mono", monospace; font-size: .78rem; letter-spacing: .12em; color: rgba(255,255,255,.65); }
.lightbox__x { position: absolute; top: 2.6vh; right: 3vw; width: 46px; height: 46px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 24px; }
.lightbox__x, .lightbox__nav { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; border-radius: 12px; transition: border-color .2s, background .2s; }
.lightbox__x:hover, .lightbox__nav:hover { border-color: #fff; background: rgba(255,255,255,.2); }
.lightbox__prev { left: 3vw; } .lightbox__next { right: 3vw; }
.mbar { display: none; }

/* scroll progress bar */
.scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 201; background: linear-gradient(90deg, var(--blue-500), var(--blue-2, #6FCDF7)); box-shadow: 0 0 10px rgba(46,166,224,.6); transition: width .08s linear; }

/* =========================================================================
   HERO RATING / FORM / LIGHTBOX-ABLE CAPABILITY IMAGES
   ========================================================================= */
.hero__rating .ic-badge { width: 26px; height: 26px; border-radius: 8px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-size: .82rem; flex: none; }
.field label .opt { color: var(--muted-2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.cap__media[data-lightbox] { cursor: zoom-in; }
.cap__media[data-lightbox]::before { content: "⤢"; position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 10px; background: rgba(11,36,54,.5); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; font-size: 1.05rem; opacity: 0; transform: scale(.9); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.cap__media[data-lightbox]:hover::before { opacity: 1; transform: scale(1); }

/* =========================================================================
   IMPACT BAND
   ========================================================================= */
.impact { position: relative; overflow: hidden; min-height: clamp(340px, 50vw, 540px); display: grid; place-items: center; background: var(--navy); }
.impact__bg { position: absolute; inset: -12% 0; z-index: 0; }
.impact__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05) brightness(.46); }
.impact::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,35,56,.62), rgba(8,26,42,.82)); }
.impact__web { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .12;
  background:
    repeating-conic-gradient(from 0deg at 82% 46%, rgba(143,209,240,.9) 0 .35deg, transparent .35deg 45deg),
    repeating-radial-gradient(circle at 82% 46%, transparent 0 40px, rgba(143,209,240,.7) 40px 40.6px 41px); }
.impact__inner { position: relative; z-index: 2; text-align: center; padding-inline: var(--pad); max-width: 920px; }
.impact__quote { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.03em; color: #fff; }
.impact__quote .accent { color: #8FD1F0; }
.impact__sub { margin: 1.2rem auto 0; max-width: 60ch; color: var(--d-body); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.6; }

/* =========================================================================
   CLIENTS / SOCIAL PROOF
   ========================================================================= */
.logowall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 44px; }
.logocell { aspect-ratio: 5/3; border: 1px dashed var(--line-2); border-radius: var(--r); background: var(--paper); display: grid; place-items: center; font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); box-shadow: var(--shadow-sm); }
.placeholder-note { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 20px; font-size: .92rem; color: var(--muted); }
.pn-tag { font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); border-radius: 999px; padding: .32rem .7rem; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.quotecard { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.quotecard blockquote { margin: 0; font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; font-size: 1.18rem; line-height: 1.42; color: var(--ink); letter-spacing: -.01em; }
.quotecard figcaption { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.quotecard figcaption b { font-family: "Schibsted Grotesk", sans-serif; font-size: .95rem; color: var(--ink); }
.quotecard figcaption span { display: block; font-size: .8rem; color: var(--muted-2); margin-top: 2px; }
@media (max-width: 900px) { .logowall { grid-template-columns: repeat(3,1fr); } .quotes { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .logowall { grid-template-columns: repeat(2,1fr); } }

/* =========================================================================
   STATS BAND (count-up)
   ========================================================================= */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(30px,4.5vw,52px) 20px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.7rem); color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.stat b .suf { color: var(--blue-600); }
.stat small { display: block; margin-top: .6rem; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 640px) {
  .statgrid { grid-template-columns: 1fr 1fr; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
}

/* card tilt — smooth follow + reset */
.cap__media { transition: transform .22s var(--ease), box-shadow .3s; transform-style: preserve-3d; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__figure { max-width: 480px; }
  .about__grid, .coverage__grid, .deploy__grid, .vault__grid, .contact__grid { grid-template-columns: 1fr; }
  .deploy__stage { position: static; }
  .deploy__big { font-size: clamp(60px,15vw,104px); }
  .careers { grid-template-columns: 1fr; gap: 24px; }
  .careers__actions { flex-direction: row; flex-wrap: wrap; }
  .leader__grid { grid-template-columns: 1fr; }
  .leader__portrait { max-width: 280px; }
  .coverage__map { max-width: 560px; margin-inline: auto; }
  .crestbadge { max-width: 300px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(84vw,340px); flex-direction: column; align-items: stretch; justify-content: center; gap: 4px; background: var(--cream); padding: 40px 28px; transform: translateX(100%); transition: transform .4s var(--ease); border-left: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__links a.lnk { font-size: 1.15rem; padding: .7rem 0; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav__links .btn { margin: 14px 0 0; }
  .burger { display: flex; z-index: 101; }
  .cap__row { grid-template-columns: 1fr; gap: 20px; }
  .cap__row:nth-child(even) .cap__media { order: 0; }
  .mrow { grid-template-columns: 40px 1fr; gap: 4px 14px; padding: 18px 18px; }
  .mrow__d { grid-column: 2; }
  .mrow__ar { display: none; }
  .gal { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .mbar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 90; inset: auto 0 0 0; }
  .mbar a { padding: 15px; text-align: center; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .92rem; }
  .mbar a.call { background: var(--coral); color: #fff; }
  .mbar a.wa { background: var(--navy); color: #fff; }
  body { padding-bottom: 54px; }
}
@media (max-width: 540px) {
  .form__grid { grid-template-columns: 1fr; }
  .record__row { grid-template-columns: 100px 1fr; gap: 12px; }
  .vrow { grid-template-columns: 1fr; gap: 5px; }
  .gal { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gcell--tall { grid-row: span 1; } .gcell--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .float-chip { left: 8px; }
  .lightbox__nav { width: 42px; height: 42px; } .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .coverage__map .cpin:not(.cpin--hq) b { display: none; } /* declutter — cities are named in the list below */
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
