/* ============================================================================
   KOMPAS LEGAL & FINANCE — bold dark edition
   Faithful to the Astryon Webflow template's visual language:
   near-black dark theme, oversized heavy-condensed two-tone display type,
   organic blob graphics, pill-shaped nav, monospace ✼ eyebrows, rounded
   cards, avatar+rating chip, mouse scroll cue.
   Re-skinned in the canonical Kompas palette (deep navy "black" + antique
   gold / champagne). All copy original; all graphics CSS/SVG (no template
   assets). Self-contained — no external CDNs (GDPR: self-hosted woff2 + system
   font fallbacks; no Google Fonts).
   ========================================================================== */

/* Shared design tokens (:root) — single source of truth across all 3 sites.
   Must stay the first at-rule so it precedes @font-face. See kompas-core.css. */
@import url("kompas-core.css");

/* ── Fonts (self-hosted, matching the original Astryon set) ───────────────
   Display  = Mona Sans Narrow ExtraBold  → giant two-tone titles (the condensed-
              heavy look; Astryon's h1/h2 = font-family primary, extra-bold).
   Body/UI  = Mona Sans (Regular/Medium).
   Labels   = DM Mono (eyebrows, sups, small caps labels).
   Mona Sans & DM Mono are both SIL OFL → free to self-host. No Google CDN (GDPR).
   The display face is one physical weight; the 100–900 range lets any requested
   font-weight resolve to the ExtraBold file with no faux styling. */
@font-face { font-family:'Mona Sans Narrow'; font-style:normal; font-weight:100 900; font-display:swap; src:url('assets/fonts/mona-sans-narrow-extrabold.woff2') format('woff2'); }
@font-face { font-family:'Mona Sans'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/fonts/mona-sans-regular.woff2') format('woff2'); }
@font-face { font-family:'Mona Sans'; font-style:normal; font-weight:500 600; font-display:swap; src:url('assets/fonts/mona-sans-medium.woff2') format('woff2'); }
@font-face { font-family:'DM Mono'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/fonts/dm-mono-regular.woff2') format('woff2'); }
@font-face { font-family:'DM Mono'; font-style:normal; font-weight:500; font-display:swap; src:url('assets/fonts/dm-mono-medium.woff2') format('woff2'); }

/* Design tokens (:root) now live in kompas-core.css (imported above). */

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ink-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ── Shared ─────────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; }

/* Monospace ✼ eyebrow (Astryon style) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft);
}
.eyebrow::before { content: "✼"; color: var(--gold); font-size: 1rem; }
.eyebrow--ink { color: var(--navy); }
.eyebrow--ink::before { color: var(--bronze); }

/* Oversized two-tone display title */
.mega {
  font-family: var(--font-display);
  font-weight: 800;            /* Mona Sans Narrow ExtraBold */
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0;
  font-size: clamp(3.2rem, 13vw, 12rem);
  color: var(--text);
}
.mega .ghost { color: var(--ghost); }
.mega--ink { color: var(--navy); }
.mega--ink .ghost { color: var(--ghost-dark); }
.mega--md { font-size: clamp(2.6rem, 8vw, 6rem); }

/* Pills / buttons */
.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.4rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .92rem; white-space: nowrap;
  transition: var(--t);
}
.pill svg { width: 16px; height: 16px; transition: transform var(--t); }
.pill:hover svg { transform: translateX(3px) rotate(0deg); }
.pill--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--gold-ink); }
.pill--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -16px rgba(182,139,60,.65); }
.pill--light { background: var(--cream); color: var(--navy); }
.pill--light:hover { transform: translateY(-2px); }
.pill--ghost { background: var(--ink-1); color: var(--text); border: 1px solid var(--line); }
.pill--ghost:hover { background: var(--ink-2); border-color: var(--line-strong); }
.pill--ghost-ink { background: #fff; color: var(--navy); border: 1px solid rgba(20,33,61,.12); }
.pill--ghost-ink:hover { background: var(--navy); color: #fff; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .9rem; color: var(--champagne);
  transition: gap var(--t), color var(--t);
}
.arrow-link svg { width: 16px; height: 16px; }
.arrow-link:hover { gap: .75rem; color: var(--gold-light); }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }

/* ============================================================================
   HEADER — floating pill nav
   ========================================================================== */
.header { position: fixed; inset: 0 0 auto 0; z-index: 200; padding-top: clamp(.7rem, 2vw, 1.1rem); transition: var(--t); }
.navbar {
  display: flex; align-items: center; justify-content: space-between; gap: .7rem;
  padding: .5rem .5rem .5rem 1rem;
  background: rgba(13, 19, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 18px 50px -30px rgba(0,0,0,.8);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand__mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand__divider { width: 1px; height: 24px; background: var(--line-strong); flex-shrink: 0; }
.brand__text { line-height: 1.05; }
.brand__name { display: block; font-family: var(--font-display); letter-spacing: .04em; font-size: 1.1rem; color: var(--text); text-transform: uppercase; white-space: nowrap; }
.brand__sub { display: block; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--champagne); margin-top: 3px; white-space: nowrap; }

.nav__menu { display: flex; align-items: center; gap: .1rem; }
.nav__link {
  display: inline-flex; align-items: center;
  padding: .5rem .7rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 500; color: var(--text-soft);
  white-space: nowrap; transition: var(--t);
}
.nav__link sup { display: none; }                /* numbered nav removed */
.nav__link:hover { color: var(--text); background: var(--ink-2); }
.nav__link.is-active { color: var(--text); background: var(--ink-2); }

.nav__right { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-pill); border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; display:block; width:18px; height:2px; background: var(--text); transition: var(--t); position: relative; }
.nav__toggle span::before { position:absolute; top:-6px; }
.nav__toggle span::after { position:absolute; top:6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top:0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { top:0; transform: rotate(-45deg); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(7rem, 14vh, 11rem) clamp(2rem, 5vh, 4rem);
  overflow: hidden;
}
.hero__blobs .blob.b1 { width: 60vw; height: 60vw; top: -10%; left: 8%;  background: radial-gradient(closest-side, rgba(30,48,96,.85), transparent 70%); }
.hero__blobs .blob.b2 { width: 46vw; height: 46vw; bottom: -18%; right: -6%; background: radial-gradient(closest-side, rgba(182,139,60,.45), transparent 70%); }
.hero__blobs .blob.b3 { width: 30vw; height: 30vw; top: 24%; right: 22%; background: radial-gradient(closest-side, rgba(217,194,156,.30), transparent 70%); }
.hero__grain { position: absolute; inset: 0; z-index: 1; background:
   radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(11,17,32,.6) 100%); pointer-events: none; }

.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__word {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(4.5rem, 22vw, 20rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--text);
  position: relative;
  display: inline-block;
  text-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hero__word sup { font-family: var(--font-sans); font-size: .14em; font-weight: 600; color: var(--champagne); vertical-align: super; top: -.1em; }
.hero__tagline { margin-top: 1.6rem; font-size: clamp(1.05rem, 2.4vw, 1.6rem); color: var(--text-soft); letter-spacing: .01em; }

.hero__foot { position: relative; z-index: 2; margin-top: clamp(3rem, 8vh, 6rem); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.rating-chip {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--cream); color: var(--navy);
  padding: .7rem 1.1rem .7rem .8rem; border-radius: 20px;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,.7);
}
.avatars { display: flex; }
.avatars .av {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--cream); display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; color: var(--cream);
}
.avatars .av:first-child { margin-left: 0; }
.av.a1 { background: linear-gradient(135deg,#14213d,#1e3060); }
.av.a2 { background: linear-gradient(135deg,#6b2432,#8a5e12); }
.av.a3 { background: linear-gradient(135deg,#1f7a5a,#14213d); }
.av.a4 { background: linear-gradient(135deg,#b68b3c,#7c5a1e); }
.rating-chip__txt { font-size: .82rem; line-height: 1.3; }
.rating-chip__txt strong { display: inline-flex; align-items: center; gap: .3rem; }
.rating-chip__txt .star { color: var(--gold); }

.hero__since { font-family: var(--font-mono); font-size: .85rem; color: var(--text-faint); }

.scroll-cue {
  position: absolute; left: 50%; bottom: clamp(1.5rem, 4vh, 2.5rem); transform: translateX(-50%);
  z-index: 2; display: inline-flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint);
}
.scroll-cue .mouse { width: 22px; height: 34px; border: 1.5px solid var(--line-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0%{opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 100%{opacity:0; transform: translate(-50%,10px);} }

/* ============================================================================
   PARTNERS MARQUEE
   ========================================================================== */
.partners { border-block: 1px solid var(--line); }
.partners__label { text-align: center; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.6rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: 3.5rem; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; color: var(--text-soft); opacity: .5; white-space: nowrap; transition: opacity var(--t); }
.marquee__item:hover { opacity: 1; }
.marquee__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.75rem)); } }

/* ============================================================================
   SOLUTIONS (light section)
   ========================================================================== */
.solutions { background: var(--cream); color: var(--navy); }
.solutions__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.solutions__head .eyebrow { margin-bottom: 1rem; }
.solutions__grid { display: grid; grid-template-columns: 1fr minmax(280px, 420px) 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.sol-col { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.sol-item__icon { width: 40px; height: 40px; color: var(--navy); margin-bottom: 1rem; }
.sol-item__icon svg { width: 100%; height: 100%; }
.sol-item h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1; letter-spacing: .01em; }
.sol-item p { margin-top: .9rem; color: rgba(20,33,61,.62); font-size: .96rem; padding-top: .9rem; border-top: 1px solid rgba(20,33,61,.14); }
.sol-item--r { text-align: right; }
.sol-item--r .sol-item__icon { margin-left: auto; }
.sol-item--r p { border-top: none; padding-top: 0; margin-top: .6rem; }

.sol-visual {
  position: relative; aspect-ratio: 3/4; border-radius: 32px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-mid), var(--ink-0) 75%);
  display: grid; place-items: center;
  box-shadow: 0 40px 90px -40px rgba(20,33,61,.6);
}
.sol-visual__blob { position: absolute; width: 78%; height: 60%; border-radius: 48% 52% 55% 45% / 55% 48% 52% 45%; background: radial-gradient(closest-side, var(--gold-light), var(--gold) 55%, var(--bronze) 100%); filter: blur(2px); animation: morph 9s var(--ease) infinite alternate; }
@keyframes morph { to { border-radius: 52% 48% 42% 58% / 45% 55% 48% 52%; transform: scale(1.05) rotate(8deg); } }
.sol-visual__word { position: relative; font-family: var(--font-display); text-transform: uppercase; color: rgba(255,255,255,.92); font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: .04em; mix-blend-mode: overlay; }
.sol-visual__word.flip { transform: scaleY(-1); opacity: .8; margin-top: 2.5rem; }

/* ============================================================================
   CASES
   ========================================================================== */
.cases__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.cases__head .meta { display: flex; align-items: center; gap: 1.2rem; }
.cases__head .yr { font-family: var(--font-mono); color: var(--text-faint); }
.cases__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.case-card {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(155deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); transition: var(--t);
}
.case-card::before { content:""; position: absolute; inset: -40% -20% auto auto; width: 320px; height: 320px; background: radial-gradient(closest-side, rgba(182,139,60,.22), transparent 70%); opacity: .55; transition: opacity var(--t); }
.case-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.case-card:hover::before { opacity: 1; }
.case-card__top { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.case-card__client { font-family: var(--font-display); text-transform: uppercase; font-size: 2rem; letter-spacing: .01em; color: var(--text); }
.case-card__sector { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--champagne); margin-top: .4rem; }
.case-card__yr { font-family: var(--font-mono); font-size: .78rem; padding: .35rem .7rem; border: 1px solid var(--line-strong); border-radius: var(--r-pill); color: var(--champagne); }
.case-card__body { position: relative; }
.case-card__stats { display: flex; gap: 2.2rem; margin-bottom: 1.1rem; }
.case-card__stats .n { font-family: var(--font-display); font-size: 2.2rem; line-height: .9; color: var(--gold-light); }
.case-card__stats .l { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-top: .4rem; }
.case-card__desc { color: var(--text-soft); font-size: .95rem; margin-bottom: 1.1rem; }

/* ============================================================================
   TESTIMONIALS
   ========================================================================== */
.tst__head { text-align: center; margin-bottom: clamp(2.5rem,5vw,3.5rem); }
.tst__head .eyebrow { justify-content: center; margin-bottom: 1rem; }
.tst__viewport { overflow: hidden; }
.tst__track { display: flex; transition: transform .55s var(--ease); }
.tst__slide { flex: 0 0 100%; padding: 0 clamp(.5rem,2vw,1.5rem); }
.tst__card { max-width: 820px; margin-inline: auto; text-align: center; background: linear-gradient(155deg,var(--ink-2),var(--ink-1)); border: 1px solid var(--line); border-radius: 32px; padding: clamp(2rem,5vw,3.5rem); }
.tst__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1.2rem; }
.tst__quote { font-size: clamp(1.25rem, 3vw, 1.9rem); line-height: 1.4; font-weight: 500; letter-spacing: -.01em; }
.tst__by { margin-top: 1.8rem; display: inline-flex; align-items: center; gap: .9rem; }
.tst__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--cream); }
.tst__meta { text-align: left; }
.tst__name { font-weight: 700; }
.tst__role { font-size: .85rem; color: var(--text-faint); }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 2rem; }
.tst__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: var(--t); }
.tst__btn:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.tst__btn svg { width: 20px; height: 20px; }
.tst__dots { display: flex; gap: .5rem; }
.tst__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: var(--t); }
.tst__dots button.is-active { background: var(--gold); width: 26px; border-radius: var(--r-pill); }

/* ============================================================================
   PACKAGES
   ========================================================================== */
.pkg__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem,4vw,3rem); }
.pkg__guarantee { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .8rem; color: var(--text-soft); padding: .6rem 1rem; border: 1px solid var(--line); border-radius: var(--r-pill); }
.pkg__guarantee svg { width: 16px; height: 16px; color: var(--gold); }
.pkg__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: stretch; }
.pkg-card { display: flex; flex-direction: column; border-radius: var(--r-card); padding: clamp(1.8rem,3vw,2.4rem); background: linear-gradient(155deg,var(--ink-2),var(--ink-1)); border: 1px solid var(--line); transition: var(--t); }
.pkg-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.pkg-card--featured { background: linear-gradient(160deg, rgba(182,139,60,.18), var(--ink-1)); border-color: rgba(182,139,60,.45); position: relative; }
.pkg-card__badge { position: absolute; top: 1.4rem; right: 1.4rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r-pill); background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--gold-ink); }
.pkg-card__icon { width: 40px; height: 40px; color: var(--champagne); margin-bottom: 1rem; }
.pkg-card__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; letter-spacing: .02em; }
.pkg-card__desc { color: var(--text-faint); font-size: .9rem; margin-top: .4rem; min-height: 2.6em; }
.pkg-card__price { margin: 1.4rem 0; display: flex; align-items: baseline; gap: .4rem; }
.pkg-card__amt { font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.pkg-card__per { color: var(--text-faint); font-size: .9rem; }
.pkg-card__list { display: grid; gap: .8rem; margin: .4rem 0 1.8rem; }
.pkg-card__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: var(--text-soft); }
.pkg-card__list svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold); }
.pkg-card .pill { margin-top: auto; justify-content: center; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.faq__list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--ink-1); transition: border-color var(--t); }
.faq-item.is-open { border-color: var(--line-strong); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; font-weight: 600; font-size: 1.04rem; text-align: left; }
.faq-item__ic { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; }
.faq-item__ic::before, .faq-item__ic::after { content:""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: var(--t); }
.faq-item__ic::before { width: 11px; height: 1.6px; }
.faq-item__ic::after { width: 1.6px; height: 11px; }
.faq-item.is-open .faq-item__ic::after { transform: scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-item__a p { padding: 0 1.5rem 1.4rem; color: var(--text-soft); }

/* ============================================================================
   INSIGHTS
   ========================================================================== */
.ins__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem,4vw,3rem); }
.ins__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.post { display: flex; flex-direction: column; border-radius: var(--r-card); overflow: hidden; background: var(--ink-1); border: 1px solid var(--line); transition: var(--t); }
.post:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.post__media { aspect-ratio: 16/10; position: relative; }
.post__media svg { width: 100%; height: 100%; }
.post__cat { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--r-pill); background: rgba(11,17,32,.7); color: var(--champagne); }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__date { font-family: var(--font-mono); font-size: .76rem; color: var(--text-faint); }
.post__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.35rem; line-height: 1; letter-spacing: .01em; margin: .7rem 0 1.1rem; }
.post .arrow-link { margin-top: auto; }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact { position: relative; overflow: hidden; }
.contact .blob.c1 { width: 50vw; height: 50vw; bottom: -25%; left: -10%; background: radial-gradient(closest-side, rgba(182,139,60,.30), transparent 70%); }
.contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.contact__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.6rem,7vw,5.5rem); line-height: .9; letter-spacing: -.01em; }
.contact__title .ghost { color: var(--ghost); }
.contact__lead { margin-top: 1.4rem; color: var(--text-soft); max-width: 42ch; }
.contact__points { margin-top: 2rem; display: grid; gap: 1rem; }
.contact__point { display: flex; align-items: center; gap: .9rem; }
.contact__point svg { width: 22px; height: 22px; color: var(--gold-light); flex: none; }
.contact__point a:hover { color: var(--gold-light); }

.form { background: var(--ink-1); border: 1px solid var(--line); border-radius: 28px; padding: clamp(1.6rem,4vw,2.5rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--champagne); margin-bottom: .5rem; }
.field input, .field textarea { width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--ink-0); color: var(--text); font: inherit; transition: var(--t); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,139,60,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); margin-top: .8rem; text-align: center; }
.form.is-sent .form__body { display: none; }
.contact-form-wrap { max-width: 560px; margin: 2.5rem auto 0; }
.field--submit { margin-bottom: 0; margin-top: .4rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form__status { font-size: .875rem; color: var(--text-soft); }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__ok { display: none; text-align: center; padding: 1.5rem; color: var(--gold-light); font-weight: 600; }
.form.is-sent .form__ok { display: block; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding-top: clamp(3rem,6vw,5rem); }
.footer__mega { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(3rem,15vw,11rem); line-height: .8; letter-spacing: -.02em; color: var(--ghost); margin-bottom: 2.5rem; text-align: center; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__brand { max-width: 32ch; }
.footer__tagline { margin-top: 1.2rem; color: var(--text-soft); font-size: .95rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--champagne); transition: var(--t); }
.footer__social a:hover { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a { color: var(--text-soft); font-size: .95rem; transition: color var(--t); }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: .84rem; color: var(--text-faint); }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--gold-light); }
.to-top { display: inline-flex; align-items: center; gap: .5rem; color: var(--champagne); }
.to-top:hover { color: var(--gold-light); }

/* ── Reveal ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1150px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__right .pill--ghost { display: none; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; inset: calc(var(--header-h, 86px)) var(--pad) auto;
    top: 90px; background: var(--ink-1); border: 1px solid var(--line);
    border-radius: 22px; padding: 1rem; gap: .2rem; box-shadow: 0 30px 70px -30px #000;
  }
  .nav__menu.is-open .nav__link { padding: .9rem 1rem; font-size: 1.05rem; }
  .solutions__grid { grid-template-columns: 1fr; }
  .sol-visual { max-width: 360px; margin-inline: auto; order: -1; }
  .sol-item--r { text-align: left; }
  .sol-item--r .sol-item__icon { margin-left: 0; }
  .cases__grid, .pkg__grid, .ins__grid { grid-template-columns: 1fr; }
  .pkg-card--featured { order: -1; }
  .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .cases__grid { gap: 1rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ============================================================================
   ASSETINZICHT v2 — component extensions on top of the bold-dark base
   ========================================================================== */

/* Language switch in nav */
.lang-switch { display: inline-flex; align-items: center; gap: .15rem; font-family: var(--font-mono); font-size: .78rem; padding: 0 .4rem; }
.lang-switch a { color: var(--text-faint); padding: .2rem .25rem; transition: color var(--t); }
.lang-switch a.is-active { color: var(--gold-light); }
.lang-switch a:hover { color: var(--text); }
.lang-switch .bar { color: var(--line-strong); }

/* Two-line hero brand word (ASSET / INZICHT) */
.hero__word .l2 { display: block; color: var(--ghost); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; color: var(--champagne); margin-bottom: 1.6rem; flex-wrap: wrap; justify-content: center; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(182,139,60,.18); }
.hero__lead { margin-top: 1.1rem; font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text-soft); max-width: 60ch; margin-inline: auto; }
.hero__actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Generic section head (eyebrow + mega) */
.head { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.head--center { text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head .eyebrow { margin-bottom: .9rem; }
.head__sub { color: var(--text-soft); max-width: 56ch; margin-top: 1rem; font-size: 1.02rem; }
.head--center .head__sub { margin-inline: auto; }
.head--ink .head__sub { color: rgba(20,33,61,.62); }

/* Value-card grid (audiences / problem / modules) */
.vgrid { display: grid; gap: 1.1rem; }
.vgrid--4 { grid-template-columns: repeat(4, 1fr); }
.vgrid--3 { grid-template-columns: repeat(3, 1fr); }
.vcard {
  background: linear-gradient(155deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.4vw, 1.9rem); transition: var(--t);
  display: flex; flex-direction: column;
}
.vcard:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.vcard__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--gold-light); background: rgba(182,139,60,.12); border: 1px solid var(--line); margin-bottom: 1.1rem; }
.vcard__icon svg { width: 24px; height: 24px; }
.vcard h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: .01em; line-height: 1; }
.vcard p { color: var(--text-soft); font-size: .95rem; margin-top: .65rem; flex: 1; }
.vcard .arrow-link { margin-top: 1.1rem; }
/* light variant inside light section */
.section--ink .vcard { background: #fff; border-color: rgba(20,33,61,.10); }
.section--ink .vcard:hover { border-color: rgba(20,33,61,.22); box-shadow: 0 24px 50px -30px rgba(20,33,61,.4); }
.section--ink .vcard h3 { color: var(--navy); }
.section--ink .vcard p { color: rgba(20,33,61,.62); }
.section--ink .vcard__icon { color: var(--bronze); background: rgba(182,139,60,.12); border-color: rgba(20,33,61,.1); }
.section--ink .arrow-link { color: var(--bronze); }
.section--ink .arrow-link:hover { color: #7c5a1e; }

/* Light section wrapper */
.section--ink { background: var(--cream); color: var(--navy); }

/* Checklist */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 2rem; margin-top: .5rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1.02rem; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background:
  var(--gold) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23241908" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/14px no-repeat; }

/* Compliance split (light) with center blob */
.split { display: grid; grid-template-columns: 1fr minmax(240px,340px) 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.split .checklist { grid-template-columns: 1fr; }
.split__visual { position: relative; aspect-ratio: 3/4; border-radius: 30px; overflow: hidden; display: grid; place-items: center; gap: 1.5rem; background: radial-gradient(120% 120% at 50% 0%, var(--navy-mid), var(--ink-0) 75%); box-shadow: 0 40px 90px -40px rgba(20,33,61,.6); }
.split__visual .sol-visual__blob { width: 74%; height: 56%; }
.split__shield { position: relative; color: rgba(255,255,255,.92); }
.split__shield svg { width: 84px; height: 84px; }
.split__words { position: relative; text-align: center; font-family: var(--font-display); text-transform: uppercase; color: rgba(255,255,255,.9); letter-spacing: .04em; mix-blend-mode: overlay; }
.split__words span { display: block; font-size: clamp(1.1rem,2.4vw,1.6rem); }
.split__words span.flip { transform: scaleY(-1); opacity: .8; }

/* Gooey metaball "fluid" graphic (navy + gold) — SVG goo filter merges moving
   circles into morphing liquid; words overlaid. Shared with the WIP solutions
   graphic. No video / external asset. */
.sol-fluid { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.sol-fluid .mb { transform-box: fill-box; transform-origin: center; will-change: transform; }
.sol-fluid .mb1 { animation: mbFloatA 7.5s ease-in-out infinite; }
.sol-fluid .mb2 { animation: mbFloatB 9s   ease-in-out infinite; }
.sol-fluid .mb3 { animation: mbFloatA 8.2s ease-in-out infinite reverse; }
.sol-fluid .mb4 { animation: mbRise   6.5s ease-in-out infinite; }
.sol-fluid .mb5 { animation: mbRise   8.8s ease-in-out 1.4s infinite; }
@keyframes mbFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px) scale(1.05); } }
@keyframes mbFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(20px)  scale(.95);  } }
@keyframes mbRise   { 0% { transform: translateY(70px) scale(.6); opacity:.6; }
                      45% { transform: translateY(-30px) scale(1); opacity:1; }
                      100% { transform: translateY(-130px) scale(.5); opacity:0; } }
.sol-words { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: clamp(1.2rem, 5vh, 2.6rem); padding: 16% 0 10%; }
.sol-word { font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  color: rgba(245,239,226,.96); font-size: clamp(.95rem, 2.2vw, 1.5rem); letter-spacing: .03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.sol-word.flip { transform: scaleY(-1); opacity: .85; }

/* Compliance certification seals — clear, recognisable badges (navy + gold) */
.cert-stack { position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column; gap: clamp(1.1rem, 4vh, 2rem); padding: clamp(1.6rem, 7%, 2.6rem); }
.cert { display: flex; align-items: center; gap: 1rem; }
.cert__seal { width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 36% 30%, #2a4d8c, #0b1424 80%);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(182,139,60,.12), inset 0 2px 12px rgba(224,185,106,.28); }
.cert__seal svg { width: 26px; height: 26px; color: var(--gold-light); }
.cert__label { font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1rem, 2.4vw, 1.4rem); letter-spacing: .02em; color: var(--text); line-height: 1.1; }
.cert__sub { display: block; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--champagne); margin-top: 3px; }

/* Integration logo grid */
.logos { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.logo-tile { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem; border-radius: 16px; background: var(--ink-1); border: 1px solid var(--line); transition: var(--t); }
.logo-tile:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.logo-badge { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1rem; flex: none; }
.lt-name { font-size: .92rem; font-weight: 500; }

/* Plans (4-up) */
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; align-items: stretch; }
.plan { display: flex; flex-direction: column; position: relative; border-radius: var(--r-card); padding: clamp(1.5rem,2.6vw,2rem); background: linear-gradient(155deg,var(--ink-2),var(--ink-1)); border: 1px solid var(--line); transition: var(--t); }
.plan:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.plan--featured { background: linear-gradient(160deg, rgba(182,139,60,.18), var(--ink-1)); border-color: rgba(182,139,60,.45); }
.plan__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--r-pill); background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--gold-ink); white-space: nowrap; }
.plan__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.45rem; letter-spacing: .02em; }
.plan__price { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; margin: .7rem 0 .2rem; }
.plan__price span { font-family: var(--font-sans); font-size: .9rem; font-weight: 500; color: var(--text-faint); }
.plan__desc { color: var(--text-faint); font-size: .86rem; min-height: 1.4em; }
.plan__features { display: grid; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.plan__features li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--text-soft); }
.plan__features svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--gold); }
.plan .pill { margin-top: auto; justify-content: center; }
.plans-foot { text-align: center; margin-top: 1.8rem; }
.plans-foot a { color: var(--champagne); font-weight: 600; }
.plans-foot a:hover { color: var(--gold-light); }

/* CTA band */
.cta { position: relative; overflow: hidden; border-radius: clamp(24px,4vw,40px); margin-inline: var(--pad); padding: clamp(3rem,7vw,5.5rem) clamp(1.5rem,5vw,4rem); text-align: center; background: linear-gradient(150deg, var(--navy-mid), var(--ink-1)); border: 1px solid var(--line); }
.cta .blob { width: 40vw; height: 40vw; top: -20%; right: -8%; background: radial-gradient(closest-side, rgba(182,139,60,.4), transparent 70%); }
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.2rem,6vw,4rem); line-height: .95; letter-spacing: -.01em; }
.cta p { color: var(--text-soft); margin-top: 1rem; }
.cta__actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .vgrid--4 { grid-template-columns: repeat(2,1fr); }
  .vgrid--3 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .split__visual { max-width: 320px; margin-inline: auto; order: -1; }
  .logos { grid-template-columns: repeat(2,1fr); }
  .plans { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .vgrid--4, .vgrid--3 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .logos { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
}

/* ============================================================================
   TYPE-SCALE & TEXT UTILITIES — mirrors the Client-First text system in the
   Astryon style guide (Large→Tiny sizes, weights, alignment, styles), named
   in the Kompas convention. Used by style-guide.html and reusable anywhere.
   ========================================================================== */
.text-lg { font-size: 1.25rem;  line-height: 1.5; }   /* Large   */
.text-md { font-size: 1.125rem; line-height: 1.55; }  /* Medium  */
.text-rg { font-size: 1rem;     line-height: 1.6; }   /* Regular */
.text-sm { font-size: .875rem;  line-height: 1.55; }  /* Small   */
.text-xs { font-size: .75rem;   line-height: 1.5; }   /* Tiny    */

.w-black    { font-weight: 800; }   /* Xbold    */
.w-bold     { font-weight: 700; }   /* Bold     */
.w-semibold { font-weight: 600; }   /* Semibold */
.w-medium   { font-weight: 500; }   /* Medium   */
.w-normal   { font-weight: 400; }   /* Normal   */

.t-left   { text-align: left; }
.t-center { text-align: center; }
.t-right  { text-align: right; }

.t-muted   { color: var(--text-soft); }
.t-faint   { color: var(--text-faint); }
.t-gold    { color: var(--gold-light); }
.t-allcaps { text-transform: uppercase; letter-spacing: .06em; }
.t-mono    { font-family: var(--font-mono); }

/* ============================================================================
   MOTION LAYER (animations.js) — CSS-driven so it never depends on the rAF
   ticker (robust + works even where JS animation frames are throttled).
   SplitText is used only to split titles into lines; the motion is pure CSS.
   No-JS / reduced-motion: the .anim-js class is never added, so nothing here
   applies and content renders fully visible. Does NOT touch .reveal (app.js).
   ========================================================================== */
/* Pre-hide animated targets the instant animations.js adds .anim-js (no flash).
   Reveal is driven by INLINE styles set in animations.js — inline always wins the
   cascade, so a reveal can never be gated by a parent's class state. These rules
   only define the start state + transition; the inline change triggers it. */
.anim-js .hero__word,
.anim-js .mega {
  opacity: 0; transform: translateY(46px);
  transition: opacity .8s ease, transform .9s var(--ease);
}
.anim-js .anim-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s var(--ease);
}

/* ============================================================================
   ASSETINZICHT v3 HERO — compass/orbit mockup translated to live UI
   ========================================================================== */
.hero--asset {
  min-height: 100svh;
  padding-block: clamp(7rem, 12vh, 10rem) clamp(4rem, 8vh, 6rem);
}

.hero--asset .hero__inner {
  text-align: left;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 66rem;
}

.hero--asset .hero__eyebrow {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.4rem, 6.8vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 200;
  text-transform: none;
  color: var(--text);
  text-shadow: 0 28px 70px rgba(0,0,0,.45);

}

.hero__title em {
  color: var(--champagne);
  font-style: italic;
}

/* The Dutch heading is longer than the English one, so it gets a slightly
   smaller size and is broken into three balanced lines via <br class="hero__brk">.
   white-space:nowrap keeps each forced line intact (no mid-line wrap); the
   font scales with the viewport so the footprint stays in the left column.
   On phones the breaks are disabled (see 520px query) and it wraps naturally. */
html[lang="nl"] .hero__title {
  font-size: clamp(2.85rem, 5.7vw, 5.35rem);
  white-space: nowrap;
}

.hero--asset .hero__tagline {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(245, 239, 226, 0.88);
}

.hero--asset .hero__lead {
  margin-top: 1rem;
  max-width: 37rem;
  margin-inline: 0;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--text-soft);
}

.hero--asset .hero__actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.hero--asset .hero__foot {
  display: block;
  align-items: initial;
  justify-content: initial;
  gap: 0;
  margin-top: 1.7rem;
}

.hero__meta {
  display: grid;
  gap: .75rem;
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--text-soft);
  font-size: .94rem;
}

.hero__meta li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 4px rgba(182,139,60,.12), 0 0 16px rgba(182,139,60,.4);
}

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__compass {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 50%;
  right: -10%;
  width: min(64vw, 900px);
  transform: translateY(-48%);
  animation: heroFloat 9s ease-in-out infinite;
}
.hero__compass img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  opacity: .96;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 70%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 70%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
@keyframes heroFloat { 0%,100% { transform: translateY(-48%); } 50% { transform: translateY(-51%); } }

@media (max-width: 900px) {
  .hero__compass { width: 130%; right: -34%; top: 42%; opacity: .45; }
  .hero--split .hero__inner { text-align: center; }
  .hero__text { max-width: none; margin-inline: auto; }
  .hero--split .hero__tagline,
  .hero--split .hero__lead { max-width: none; margin-inline: auto; }
  .hero--split .hero__actions { justify-content: center; }
}


.hero__art-frame {
  position: relative;
  max-width: 100%;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(14, 21, 37, .96), rgba(8, 12, 23, .98));
  border: 1px solid rgba(224, 185, 106, .16);
  box-shadow: 0 36px 90px -44px rgba(0,0,0,.82);
}

.hero__art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(224,185,106,.14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 18%, transparent 82%, rgba(0,0,0,.24));
  pointer-events: none;
  z-index: 1;
}

.hero__art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.partners {
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  inset: auto 12% -60px;
  height: 120px;
  background: radial-gradient(circle at 50% 50%, rgba(224,185,106,.1), transparent 72%);
  pointer-events: none;
}

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

  .hero__copy {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }

  .hero--asset .hero__eyebrow {
    justify-content: center;
  }

  .hero--asset .hero__lead,
  .hero--asset .hero__tagline {
    margin-inline: auto;
  }

  .hero--asset .hero__actions {
    justify-content: center;
  }

  .hero__meta {
    justify-items: center;
  }

  .hero__meta li {
    justify-content: center;
  }

  .hero__art-frame {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .hero--asset {
    padding-block: 6.5rem 4rem;
  }

  .hero__title {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__art-frame {
    border-radius: 24px;
  }

  .hero__art {
    aspect-ratio: 4 / 3;
  }

  .hero__meta li {
    font-size: .9rem;
  }
}

@media (max-width: 520px) {
  .hero__title {
    letter-spacing: -.03em;
  }

  /* let the long NL heading wrap naturally on narrow screens */
  .hero__title .hero__brk {
    display: none;
  }
  html[lang="nl"] .hero__title {
    white-space: normal;
    /* long NL words ("bedrijfsmiddelen.") must fit a phone width */
    font-size: clamp(2rem, 8.5vw, 2.5rem);
  }

  .hero__meta {
    gap: .6rem;
  }

  .hero__meta li {
    align-items: flex-start;
    text-align: left;
  }
}

/* Mobile nav fit: on small phones the wide brand sub-line + lang switch + CTA
   pills would push the hamburger off-screen (menu unopenable). Collapse the bar
   to brand mark+name + hamburger; nav lives in the opened menu. */
@media (max-width: 560px) {
  .brand__sub { display: none; }
  .nav__right .pill { display: none; }   /* keep lang switch; drop CTA pills */
}
