/**
 * PeponiXL Corporate surface — Dutch merchant-house prospectus.
 * Fraunces display + Instrument Sans body + JetBrains Mono metadata,
 * warm paper palette with burnt-sienna accent. Editorial weight,
 * hairline rules, numbered section markers, subtle grain overlay.
 *
 * Served on: front page, /about, /careers, /press (pxl_news), /contact,
 * /b2b, /legal/*. The .pxl-eu-map__* classes below are JS-bound —
 * do not rename.
 */

:root {
    --paper:       #F2ECDF;  /* warm paper, body background */
    --paper-2:     #EAE2D0;  /* deeper paper, section bands */
    --paper-3:     #E1D6BE;  /* border paper, hairline rules tinted */
    --ink:         #0F0D0A;  /* primary text, almost-black with warmth */
    --ink-2:       #2A2420;  /* secondary text */
    --ink-3:       #6B6158;  /* tertiary text, metadata */
    --accent:      #B2451F;  /* burnt sienna — used sparingly */
    --accent-ink:  #7A2F12;  /* accent hover/pressed */
    --rule:        #C4B9A5;  /* hairline rule across light surfaces */
    --rule-dark:   rgba(242,236,223,0.14);
    --dark-panel:  #0C0A07;  /* map + footer ground */
    --dark-paper:  #F2ECDF;  /* text on dark panel */

    --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --f-body:    'Instrument Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --container: 1240px;
    --gutter: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body.corp-body {
    margin: 0;
    font-family: var(--f-body);
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    transition: opacity 240ms ease-out;
    font-feature-settings: "ss01" on, "cv11" on;
    position: relative;
}
body.corp-body.corp-loaded { opacity: 1; }

/* Subtle grain overlay — makes the paper feel printed, not digital. */
body.corp-body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.corp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── Typography primitives ───────────────────────────── */
.corp-mono {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.corp-rule {
    height: 1px;
    background: var(--rule);
    border: 0;
    margin: 0;
}
.corp-section-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.corp-section-mark__num {
    color: var(--accent);
    font-weight: 600;
}

/* ── Header ──────────────────────────────────────────── */
.corp-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
}
.corp-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px var(--gutter);
    gap: 24px;
}
.corp-logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.corp-logo__img { height: 52px; width: auto; display: block; }

.corp-nav { display: flex; gap: 36px; align-items: baseline; }
.corp-nav a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.005em;
    position: relative;
    transition: color 180ms ease-out;
}
.corp-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.corp-nav a:hover, .corp-nav a[aria-current="page"] { color: var(--ink); }
.corp-nav a:hover::after, .corp-nav a[aria-current="page"]::after { transform: scaleX(1); }

.corp-btn {
    display: inline-block;
    padding: 14px 26px;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out, transform 200ms ease-out;
}
.corp-btn--primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.corp-btn--primary:hover { background: var(--accent); border-color: var(--accent); }
.corp-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.corp-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.corp-btn--sm { padding: 10px 18px; font-size: 13px; }

/* ── Hero ────────────────────────────────────────────── */
.corp-hero { padding: 88px 0 112px; position: relative; }
.corp-hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    margin-bottom: 72px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
    gap: 16px;
}
.corp-hero__meta-left { display: flex; gap: 28px; align-items: baseline; flex-wrap: wrap; }
.corp-hero__meta-right { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase; }

.corp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 88px;
    align-items: start;
}
.corp-hero__text { min-width: 0; padding-top: 8px; }

.corp-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 32px;
}
.corp-hero__eyebrow::before {
    content: ''; width: 32px; height: 1px;
    background: var(--accent);
}

.corp-hero__headline {
    font-family: var(--f-display);
    font-size: clamp(40px, 5.6vw, 76px);
    font-weight: 380;
    line-height: 1.02;
    letter-spacing: -0.018em;
    margin: 0 0 36px;
    max-width: 820px;
    color: var(--ink);
    font-variation-settings: "opsz" 120, "SOFT" 40;
}
.corp-hero__headline em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 80;
    color: var(--accent);
    font-weight: 360;
}

.corp-hero__subhead {
    font-family: var(--f-body);
    font-size: clamp(17px, 1.3vw, 19.5px);
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 40px;
    max-width: 560px;
}

.corp-hero__ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.corp-hero__secondary {
    color: var(--ink);
    font-weight: 500; font-size: 14px;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.corp-hero__secondary::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--ink);
    transition: background 200ms ease-out;
}
.corp-hero__secondary:hover { color: var(--accent); }
.corp-hero__secondary:hover::after { background: var(--accent); }

/* Hero brand mark — official logo on a paper-2 inset card with filing block. */
.corp-hero__mark {
    position: relative;
    padding: 40px 32px 36px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
}
.corp-hero__mark::before, .corp-hero__mark::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border: 1px solid var(--accent);
}
.corp-hero__mark::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corp-hero__mark::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.corp-hero__mark-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 0; width: 100%;
}
.corp-hero__img {
    display: block; width: 100%; height: auto;
    max-width: 280px;
}
.corp-hero__mark-label {
    margin: 0;
    font-family: var(--f-mono);
    font-weight: 500;
    color: var(--ink-3);
    text-align: center;
}
.corp-hero__mark-label--top {
    font-size: 10.5px; letter-spacing: 0.24em;
    margin-bottom: 16px;
}
.corp-hero__mark-label--bottom {
    font-size: 10px; letter-spacing: 0.2em;
    margin-top: 6px;
}
.corp-hero__mark-label--sub {
    font-size: 9.5px; letter-spacing: 0.16em;
    opacity: 0.7; margin-top: 4px;
}
.corp-hero__mark-divider {
    width: 48px; height: 1px;
    background-color: var(--rule);
    margin: 24px 0 16px;
}

.corp-hero__filing {
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}
.corp-hero__filing dt { color: var(--ink-3); }
.corp-hero__filing dd { margin: 0; color: var(--ink); font-weight: 500; }

@media (max-width: 960px) {
    .corp-hero { padding: 64px 0 80px; }
    .corp-hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .corp-hero__mark { max-width: 480px; margin: 0 auto; }
    .corp-hero__img { max-width: 220px; }
    .corp-hero__meta { margin-bottom: 48px; }
}

/* ── Scale strip — ruler-style with tick marks ─────── */
.corp-scale {
    padding: 0;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.corp-scale__mark {
    padding: 24px 0 0;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.corp-scale__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    padding: 32px 0 40px;
}
.corp-scale__cell {
    padding: 0 32px;
    border-left: 1px solid var(--rule);
    position: relative;
}
.corp-scale__cell:first-child { border-left: 0; padding-left: 0; }
.corp-scale__cell::before {
    content: '';
    position: absolute;
    top: -32px; left: 0;
    width: 12px; height: 8px;
    border-left: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3);
}
.corp-scale__cell:first-child::before { left: 0; }
.corp-scale__label {
    font-family: var(--f-mono);
    font-size: 10.5px; font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.corp-scale__value {
    font-family: var(--f-display);
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 380;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 20;
}
.corp-scale__value sub {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    vertical-align: 18%;
    margin-left: 4px;
    text-transform: uppercase;
}

/* ── 3-column editorial section ──────────────────────── */
.corp-section { padding: 120px 0 128px; }
.corp-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 48px;
    align-items: start;
    margin-bottom: 72px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}
.corp-section__eyebrow {
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.14em;
    margin: 0;
    padding-top: 12px;
}
.corp-section__title {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 380;
    letter-spacing: -0.018em;
    line-height: 1.12;
    margin: 0;
    max-width: 740px;
    color: var(--ink);
    font-variation-settings: "opsz" 96, "SOFT" 40;
}
.corp-section__title em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 120, "SOFT" 70;
}
.corp-section__grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}
.corp-col {
    position: relative;
    padding-top: 24px;
}
.corp-col::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 32px; height: 1px;
    background: var(--accent);
}
.corp-col__num {
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin: 0 0 14px;
}
.corp-col h3 {
    font-family: var(--f-display);
    font-size: 22px; font-weight: 420;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 30;
}
.corp-col p {
    color: var(--ink-2);
    margin: 0;
    line-height: 1.62;
    font-size: 15.5px;
}

/* ── News teaser ─────────────────────────────────────── */
.corp-news {
    padding: 112px 0 128px;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
}
.corp-news__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}
.corp-news__title {
    font-family: var(--f-display);
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 380;
    letter-spacing: -0.02em;
    margin: 0;
    font-variation-settings: "opsz" 96, "SOFT" 40;
}
.corp-news__all {
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}
.corp-news__all::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--ink);
    transition: background 200ms ease-out;
}
.corp-news__all:hover { color: var(--accent); }
.corp-news__all:hover::after { background: var(--accent); }

.corp-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.corp-news-card {
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    padding: 32px 32px 36px;
    border-left: 1px solid var(--rule);
    background: transparent;
    transition: background 220ms ease-out;
    min-height: 240px;
}
.corp-news-card:first-child { border-left: 0; padding-left: 0; }
.corp-news-card:last-child { padding-right: 0; }
.corp-news-card:hover { background: rgba(178, 69, 31, 0.04); }
.corp-news-card__date {
    font-family: var(--f-mono);
    font-size: 10.5px;
    color: var(--ink-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.corp-news-card__title {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.012em;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 40;
    transition: color 200ms ease-out;
}
.corp-news-card:hover .corp-news-card__title { color: var(--accent-ink); }
.corp-news-card__excerpt {
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.58;
    margin: 0;
}

/* ── Footer ──────────────────────────────────────────── */
.corp-footer {
    background: var(--dark-panel);
    color: rgba(242, 236, 223, 0.62);
    padding: 96px 0 36px;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.55;
    position: relative;
    font-family: var(--f-body);
}
.corp-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178,69,31,0.5) 30%, rgba(178,69,31,0.5) 70%, transparent);
}

.corp-footer__top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--rule-dark);
}

.corp-footer__brand { max-width: 340px; }
.corp-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-paper);
    margin-bottom: 24px;
}
.corp-footer__img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(1.05) contrast(1.02);
}
.corp-footer__statement {
    margin: 0;
    font-family: var(--f-display);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 380;
    font-style: italic;
    color: rgba(242, 236, 223, 0.68);
    max-width: 300px;
    font-variation-settings: "opsz" 24, "SOFT" 60;
}

.corp-footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.corp-footer__heading {
    font-family: var(--f-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 236, 223, 0.42);
    margin: 0 0 10px;
}
.corp-footer__col a {
    color: rgba(242, 236, 223, 0.82);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 400;
    transition: color 180ms ease-out;
    width: fit-content;
    position: relative;
}
.corp-footer__col a:hover { color: var(--accent); }

.corp-footer__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 32px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 236, 223, 0.42);
}
.corp-footer__entity { font-variant-numeric: tabular-nums; }
.corp-footer__copy { font-variant-numeric: tabular-nums; }

/* ── Generic inner page (about, careers, contact, legal, news single) ─── */
.corp-page { padding: 96px 0 128px; }
.corp-page__eyebrow {
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.14em;
    margin: 0 0 20px;
    display: inline-flex; align-items: center; gap: 12px;
}
.corp-page__eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--accent);
}
.corp-page__headline {
    font-family: var(--f-display);
    font-size: clamp(40px, 5.6vw, 72px);
    font-weight: 380;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    max-width: 900px;
    line-height: 1.04;
    color: var(--ink);
    font-variation-settings: "opsz" 120, "SOFT" 40;
}
.corp-page__headline em { font-style: italic; color: var(--accent); }
.corp-page__lede {
    font-family: var(--f-body);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 700px;
    margin: 0 0 64px;
}

.corp-prose { max-width: 700px; font-size: 17px; line-height: 1.68; }
.corp-prose h2 {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 420;
    letter-spacing: -0.012em;
    margin: 56px 0 18px;
    font-variation-settings: "opsz" 72, "SOFT" 30;
}
.corp-prose h3 {
    font-family: var(--f-display);
    font-size: 20px; font-weight: 440;
    margin: 36px 0 12px;
    font-variation-settings: "opsz" 48, "SOFT" 30;
}
.corp-prose p { margin: 0 0 18px; color: var(--ink); }
.corp-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.corp-prose a:hover { color: var(--accent-ink); }
.corp-prose ul, .corp-prose ol { padding-left: 20px; margin: 0 0 18px; }
.corp-prose li { margin-bottom: 8px; }
.corp-prose hr { border: 0; border-top: 1px solid var(--rule); margin: 56px 0; }
.corp-prose code {
    font-family: var(--f-mono);
    font-size: 0.9em;
    background: var(--paper-2);
    padding: 2px 6px;
}
.corp-prose blockquote {
    margin: 32px 0;
    padding: 4px 0 4px 28px;
    border-left: 2px solid var(--accent);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 380;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 80;
}

/* ── News archive / list ─────────────────────────────── */
.corp-news-list { max-width: 860px; }
.corp-news-list__item {
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    display: block;
    color: var(--ink);
    transition: padding-left 220ms ease-out;
}
.corp-news-list__item:first-child { padding-top: 0; }
.corp-news-list__item:last-child { border-bottom: 0; }
.corp-news-list__item:hover { padding-left: 12px; }
.corp-news-list__date {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.corp-news-list__title {
    font-family: var(--f-display);
    font-size: 26px; font-weight: 400;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 96, "SOFT" 40;
    transition: color 220ms ease-out;
}
.corp-news-list__item:hover .corp-news-list__title { color: var(--accent-ink); }
.corp-news-list__excerpt { color: var(--ink-2); margin: 0; line-height: 1.6; font-size: 15.5px; }

.corp-news-single { max-width: 740px; }
.corp-news-single__date {
    font-family: var(--f-mono);
    font-size: 11px; color: var(--ink-3);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 12px;
}
.corp-news-single__title {
    font-family: var(--f-display);
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 380;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 40px;
    font-variation-settings: "opsz" 120, "SOFT" 40;
}
.corp-news-single__media {
    margin-top: 56px; padding-top: 32px;
    border-top: 1px solid var(--rule);
    font-size: 14.5px; color: var(--ink-2);
}
.corp-news-single__media strong { color: var(--ink); font-weight: 600; }

.corp-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 36px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-3);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.corp-back-link:hover { color: var(--accent); }

/* ── Contact page ────────────────────────────────────── */
.corp-contact-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 960px;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}
.corp-contact-card {
    padding: 36px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--paper-2);
}
.corp-contact-card h3 {
    font-family: var(--f-display);
    font-size: 20px; font-weight: 420;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 48, "SOFT" 30;
}
.corp-contact-card p { margin: 0 0 4px; font-size: 14.5px; color: var(--ink-2); }
.corp-contact-card a { color: var(--accent); text-decoration: none; }
.corp-contact-card a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── Form (B2B) ──────────────────────────────────────── */
.corp-flash {
    max-width: 580px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14.5px;
    line-height: 1.5;
    border: 1px solid var(--rule);
    background: var(--paper-2);
    color: var(--ink);
    border-left: 3px solid var(--accent);
}
.corp-flash--success { border-left-color: #3d6b4a; background: #ecf3ed; }
.corp-flash--error   { border-left-color: #8a2e2e; background: #f5e6e4; }
.corp-flash a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }

.corp-form { max-width: 580px; display: flex; flex-direction: column; gap: 22px; }
.corp-form label {
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    color: var(--ink-3);
    display: flex; flex-direction: column; gap: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.corp-form input, .corp-form textarea, .corp-form select {
    font-family: var(--f-body);
    font-size: 15.5px;
    padding: 14px 16px;
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink);
    text-transform: none;
    letter-spacing: normal;
}
.corp-form input:focus, .corp-form textarea:focus, .corp-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent);
}
.corp-form textarea { min-height: 140px; resize: vertical; }
.corp-form__actions { margin-top: 12px; }

/* ── Careers callout ────────────────────────────────── */
.corp-careers-callout {
    max-width: 720px;
    padding: 40px 44px;
    background: var(--paper-2);
    border-left: 3px solid var(--accent);
    margin: 56px 0;
}
.corp-careers-callout p {
    margin: 0;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 380;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 80;
}

/* ── About stats ─────────────────────────────────────── */
.corp-stat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 56px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.corp-stat {
    padding: 32px;
    border-right: 1px solid var(--rule);
}
.corp-stat:last-child { border-right: 0; }
.corp-stat__label {
    font-family: var(--f-mono);
    font-size: 10.5px; color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.14em;
    margin-bottom: 14px;
}
.corp-stat__value {
    font-family: var(--f-display);
    font-size: 36px; font-weight: 380;
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 96, "SOFT" 30;
}

/* ── EU Map (corporate variant — dark institutional panel) ─ */
.corp-map {
    background: var(--dark-panel);
    color: var(--dark-paper);
    padding: 128px 0 112px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rule);
}
.corp-map::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 40% 50%, rgba(178,69,31,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 70% 40%, rgba(242,236,223,0.025) 0%, transparent 60%);
    pointer-events: none;
}
.corp-map__inner { position: relative; z-index: 1; }

.corp-map__head {
    text-align: center;
    margin-bottom: 72px;
}
.corp-map__eyebrow {
    font-family: var(--f-mono);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(242,236,223,0.52);
    margin: 0 0 20px;
    display: inline-flex; align-items: center; gap: 12px;
    justify-content: center;
}
.corp-map__eyebrow::before, .corp-map__eyebrow::after {
    content: ''; width: 32px; height: 1px;
    background: var(--accent);
}
.corp-map__title {
    font-family: var(--f-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 380;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 auto 18px;
    max-width: 780px;
    color: var(--dark-paper);
    font-variation-settings: "opsz" 120, "SOFT" 40;
}
.corp-map__title em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 80; }
.corp-map__subtitle {
    font-family: var(--f-body);
    color: rgba(242,236,223,0.62);
    font-size: 16px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 580px;
}

.pxl-eu-map__container { position: relative; }

/* Mobile country list */
.pxl-eu-map__mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--rule-dark);
    border-left: 1px solid var(--rule-dark);
    max-width: 600px;
    margin: 0 auto;
}
@media (min-width: 480px) {
    .pxl-eu-map__mobile { grid-template-columns: repeat(3, 1fr); }
}
.pxl-eu-map__desktop { display: none; }
@media (min-width: 960px) {
    .pxl-eu-map__mobile { display: none; }
    .pxl-eu-map__desktop { display: block; }
}
.pxl-eu-map__country-card {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
    background: rgba(242,236,223,0.02);
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
    font-family: var(--f-body);
    font-size: 13.5px; font-weight: 500;
    color: rgba(242,236,223,0.78);
    text-decoration: none;
    transition: background 200ms ease-out, color 200ms ease-out;
    min-height: 48px;
    overflow: hidden;
}
.pxl-eu-map__country-card:hover {
    background: rgba(178,69,31,0.12);
    color: var(--dark-paper);
}
.pxl-eu-map__country-card.is-coming-soon { opacity: 0.36; pointer-events: none; }
.pxl-eu-map__country-flag { font-size: 16px; flex-shrink: 0; }
.pxl-eu-map__country-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.pxl-eu-map__country-badge { display: none; }

/* Desktop canvas */
.pxl-eu-map__canvas {
    position: relative;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1.2 / 1;
    margin: 0 auto;
}
.pxl-eu-map__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(242,236,223,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242,236,223,0.035) 1px, transparent 1px);
    background-size: 8% 8%;
    mask-image: radial-gradient(ellipse 70% 65% at 45% 45%, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 45% 45%, #000 40%, transparent 80%);
}
.pxl-eu-map__lines {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none;
}
.pxl-eu-map__lines line {
    stroke: rgba(178,69,31,0.22);
    stroke-width: 0.15;
    stroke-dasharray: 2 2;
    animation: corp-line-dash 12s linear infinite;
}
@keyframes corp-line-dash { to { stroke-dashoffset: -20; } }

/* Markers */
.pxl-map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: none; border: none;
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; padding: 8px;
    transition: z-index 0s;
}
.pxl-map-marker:hover { z-index: 10; }

.pxl-map-marker__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(242,236,223,0.28);
    border: 1.5px solid rgba(242,236,223,0.2);
    transition: all 280ms cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative; z-index: 2;
}
.pxl-map-marker.is-active .pxl-map-marker__dot {
    background: var(--dark-paper);
    border-color: rgba(242,236,223,0.5);
    box-shadow: 0 0 10px rgba(242,236,223,0.35);
}
.pxl-map-marker.is-hq .pxl-map-marker__dot {
    width: 13px; height: 13px;
    background: var(--accent);
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 22px rgba(178,69,31,0.65), 0 0 44px rgba(178,69,31,0.25);
}
.pxl-map-marker:hover .pxl-map-marker__dot {
    transform: scale(1.4);
    box-shadow: 0 0 18px rgba(242,236,223,0.45);
}

.pxl-map-marker__pulse {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px; border-radius: 50%;
    border: 1px solid transparent;
    z-index: 1;
}
.pxl-map-marker.is-active .pxl-map-marker__pulse {
    border-color: rgba(242,236,223,0.55);
    animation: corp-marker-pulse 3s ease-out infinite;
}
.pxl-map-marker.is-hq .pxl-map-marker__pulse {
    border-color: rgba(178,69,31,0.6);
    animation: corp-marker-pulse 2.2s ease-out infinite;
}
@keyframes corp-marker-pulse {
    0% { width: 9px; height: 9px; opacity: 0.55; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

.pxl-map-marker__code {
    font-family: var(--f-mono);
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(242,236,223,0.38);
    text-transform: uppercase;
    transition: color 220ms;
}
.pxl-map-marker.is-active .pxl-map-marker__code { color: rgba(242,236,223,0.68); }
.pxl-map-marker.is-hq .pxl-map-marker__code {
    color: var(--accent);
    font-size: 10.5px;
}
.pxl-map-marker:hover .pxl-map-marker__code { color: var(--dark-paper); }

/* Tooltip */
.pxl-eu-map__tooltip {
    position: absolute; z-index: 20;
    background: rgba(12, 10, 7, 0.98);
    padding: 12px 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
    font-family: var(--f-body);
    font-size: 13px; font-weight: 500;
    color: var(--dark-paper);
    pointer-events: none;
    transform: translate(-50%, -140%);
    border: 1px solid rgba(178,69,31,0.3);
    display: flex; align-items: center; gap: 12px;
    white-space: nowrap;
}
.pxl-eu-map__tooltip[hidden] { display: none; }
.pxl-eu-map__tooltip::after {
    content: '';
    position: absolute; bottom: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: rgba(12, 10, 7, 0.98);
    border-right: 1px solid rgba(178,69,31,0.3);
    border-bottom: 1px solid rgba(178,69,31,0.3);
}
.pxl-eu-map__tooltip-flag { font-size: 18px; }
.pxl-eu-map__tooltip-name { font-weight: 600; font-family: var(--f-display); font-size: 15px; font-weight: 420; }
.pxl-eu-map__tooltip-status {
    font-family: var(--f-mono);
    font-size: 9.5px;
    padding: 3px 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pxl-eu-map__tooltip-status.is-active {
    background: rgba(178,69,31,0.2);
    color: var(--accent);
    border: 1px solid rgba(178,69,31,0.4);
}
.pxl-eu-map__tooltip-status.is-coming {
    background: rgba(242,236,223,0.06);
    color: rgba(242,236,223,0.6);
    border: 1px solid rgba(242,236,223,0.14);
}

/* Legend */
.pxl-eu-map__legend {
    display: flex; justify-content: center;
    gap: 40px; margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-dark);
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}
.pxl-eu-map__legend-item {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--f-mono);
    font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(242,236,223,0.52);
    text-transform: uppercase;
}
.pxl-eu-map__legend-dot {
    width: 7px; height: 7px; border-radius: 50%;
}
.pxl-eu-map__legend-item--active .pxl-eu-map__legend-dot {
    background: var(--dark-paper);
    box-shadow: 0 0 6px rgba(242,236,223,0.45);
}
.pxl-eu-map__legend-item--coming .pxl-eu-map__legend-dot {
    background: rgba(242,236,223,0.28);
    border: 1px solid rgba(242,236,223,0.2);
}
.pxl-eu-map__legend-item--hq .pxl-eu-map__legend-dot {
    background: var(--accent);
    width: 9px; height: 9px;
    box-shadow: 0 0 12px rgba(178,69,31,0.8);
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --gutter: 22px; }
    .corp-header__inner { padding: 16px var(--gutter); }
    .corp-nav { display: none; }
    .corp-logo__img { height: 44px; }
    .corp-hero { padding: 56px 0 72px; }
    .corp-hero__meta { margin-bottom: 36px; }
    .corp-hero__headline { font-size: clamp(34px, 8vw, 46px); }
    .corp-section { padding: 80px 0 84px; }
    .corp-section__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
    .corp-news { padding: 72px 0 80px; }
    .corp-scale__grid { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 24px 0 32px; }
    .corp-scale__cell { padding: 32px 16px 0; border-left: 0; border-top: 1px solid var(--rule); }
    .corp-scale__cell:first-child, .corp-scale__cell:nth-child(2) { border-top: 0; padding-top: 0; }
    .corp-scale__cell::before { display: none; }
    .corp-section__grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .corp-news__grid { grid-template-columns: 1fr; }
    .corp-news-card { border-left: 0; border-top: 1px solid var(--rule); padding: 28px 0; min-height: 0; }
    .corp-news-card:first-child { border-top: 0; padding-top: 0; }
    .corp-contact-grid { grid-template-columns: 1fr; }
    .corp-stat-grid { grid-template-columns: 1fr; border: 0; }
    .corp-stat { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 0; }
    .corp-stat:last-child { border-bottom: 0; }
    .corp-footer { padding: 72px 0 32px; }
    .corp-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 44px 32px;
        padding-bottom: 52px;
    }
    .corp-footer__brand { grid-column: 1 / -1; max-width: none; }
    .corp-footer__img { height: 56px; }
    .corp-footer__statement { max-width: 440px; }
    .corp-footer__meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .corp-page { padding: 64px 0 88px; }
    .corp-map { padding: 88px 0 72px; }
    .corp-map__head { margin-bottom: 48px; }
    .pxl-eu-map__legend { gap: 24px; flex-wrap: wrap; }
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    body.corp-body { opacity: 1; transition: none; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
