:root {
    --bg: #03101b;
    --bg-deep: #020a12;
    --surface: #071827;
    --surface-2: #0a2031;
    --text: #f4f7f9;
    --muted: #9baeba;
    --cyan: #11bfff;
    --cyan-soft: #5dd6ff;
    --green: #8eea35;
    --line: rgba(128, 177, 201, .24);
    --line-strong: rgba(51, 187, 241, .52);
    --danger: #ffb36a;
    --max: 1440px;
    --gutter: clamp(20px, 4vw, 64px);
    --header-h: 88px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 92% 12%, rgba(0, 145, 216, .08), transparent 26%),
        var(--bg);
    font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(81, 145, 177, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(81, 145, 177, .11) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 60%);
    mask-image: linear-gradient(to bottom, black, transparent 60%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.container { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
    position: fixed; top: 8px; left: 8px; z-index: 999;
    transform: translateY(-150%);
    padding: 10px 16px; color: var(--bg); background: var(--cyan);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky; top: 0; z-index: 100;
    min-height: var(--header-h);
    border-bottom: 1px solid var(--line);
    background: rgba(3, 16, 27, .82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .site-header { background: rgba(3, 16, 27, .97); }
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(0, 0, 0, .22); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: clamp(16px, 2vw, 36px); }
.brand { display: inline-grid; grid-template-columns: 40px auto; grid-template-rows: auto auto; align-items: center; column-gap: 12px; flex: 0 0 auto; }
.brand-mark {
    grid-row: 1 / 3; width: 38px; height: 44px; display: block; position: relative;
    border: 1.5px solid var(--cyan); clip-path: polygon(50% 0, 94% 16%, 88% 74%, 50% 100%, 12% 74%, 6% 16%);
}
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; inset: 50% 7px auto; height: 1px; background: var(--line-strong); transform: rotate(35deg); }
.brand-mark::after { transform: rotate(-35deg); }
.brand-mark i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--text); }
.brand-mark i:nth-child(1) { left: 9px; top: 11px; }
.brand-mark i:nth-child(2) { right: 8px; top: 17px; background: var(--cyan); }
.brand-mark i:nth-child(3) { left: 12px; bottom: 11px; }
.brand-mark i:nth-child(4) { right: 10px; bottom: 8px; background: var(--green); }
.brand-name { font-size: 1.45rem; line-height: 1; font-weight: 680; letter-spacing: .09em; }
.brand-full { max-width: 145px; font-size: .64rem; line-height: 1.15; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.site-nav { display: flex; align-self: stretch; align-items: center; gap: clamp(14px, 1.7vw, 30px); margin-left: auto; }
.site-nav a {
    position: relative; display: flex; align-items: center; height: 100%;
    color: #d9e3e8; font-size: .83rem; white-space: nowrap;
}
.site-nav a::after { content: ""; position: absolute; inset: auto 0 -1px; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.site-nav a:hover, .site-nav a.is-active { color: var(--cyan-soft); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; gap: 14px; padding-left: 18px; border-left: 1px solid var(--line); }
.site-nav .nav-cta { display: none; }

.lang-switch { position: relative; }
.lang-switch summary {
    display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 12px;
    border: 1px solid var(--line); background: rgba(6, 24, 38, .55);
    color: #d9e3e8; font-size: .78rem; font-weight: 650; letter-spacing: .06em;
    list-style: none; cursor: pointer; user-select: none; -webkit-user-select: none;
    transition: border-color .2s var(--ease), color .2s, background .2s;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::marker { content: ""; }
.lang-switch summary:hover { border-color: var(--line-strong); color: var(--cyan-soft); }
.lang-switch[open] summary { border-color: var(--line-strong); color: var(--cyan-soft); background: rgba(8, 30, 47, .8); }
.lang-globe { flex: 0 0 auto; opacity: .8; }
.lang-caret { flex: 0 0 auto; opacity: .7; transition: transform .25s var(--ease); }
.lang-switch[open] .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 130;
    min-width: 190px; margin: 0; padding: 6px; list-style: none;
    border: 1px solid var(--line-strong); background: rgba(6, 21, 33, .98);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .45);
    animation: lang-in .18s var(--ease);
}
@keyframes lang-in { from { opacity: 0; transform: translateY(-6px); } }
.lang-menu li { margin: 0; }
.lang-menu a { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 10px 12px; color: #c4d0d7; font-size: .86rem; }
.lang-menu a:hover, .lang-menu a:focus-visible { background: rgba(17, 191, 255, .1); color: var(--cyan-soft); outline: none; }
.lang-menu a.is-active { color: var(--cyan); }
.lang-menu .lang-code { color: var(--muted); font-size: .68rem; font-weight: 650; letter-spacing: .08em; }
.lang-menu a.is-active .lang-code { color: var(--cyan); }
.button {
    display: inline-flex; justify-content: center; align-items: center; gap: 26px;
    min-height: 56px; padding: 0 28px; border: 1px solid var(--cyan);
    color: #00131e; background: var(--cyan);
    font-weight: 650; font-size: .88rem; letter-spacing: .01em;
    transition: color .25s, background .25s, box-shadow .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(17, 191, 255, .18); background: var(--cyan-soft); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; gap: 14px; font-size: .74rem; background: transparent; color: var(--cyan); white-space: nowrap; }
.button-small:hover { color: #00131e; background: var(--cyan); }
.button-secondary { color: var(--text); background: rgba(4, 20, 32, .5); }
.button-secondary:hover { color: var(--bg); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; }
.menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.hero { position: relative; min-height: min(600px, calc(100vh - var(--header-h))); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after {
    content: ""; position: absolute; inset: auto 0 0; height: 35%;
    background: linear-gradient(to top, var(--bg), transparent); pointer-events: none;
}
.hero-art {
    position: absolute; inset: 0; background: url("../img/belgium-observatory.png") center / cover no-repeat;
    animation: hero-breathe 12s ease-in-out infinite alternate; transform-origin: 70% 45%;
}
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: inherit; }
.hero-copy { width: min(680px, 58%); padding-block: 56px 88px; }
.hero h1 { margin: 0 0 22px; font-size: clamp(2.4rem, 3.4vw, 3.6rem); line-height: 1.05; letter-spacing: -.035em; font-weight: 680; }
.hero p { max-width: 580px; margin-bottom: 30px; color: #c4d0d7; font-size: clamp(1rem, 1.1vw, 1.15rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--cyan); font-weight: 600; font-size: .84rem; padding-bottom: 5px; border-bottom: 1px solid var(--cyan); }
.text-link:hover { color: var(--green); border-color: var(--green); }

.mission-band { position: relative; border-bottom: 1px solid var(--line); background: rgba(5, 21, 34, .78); }
.mission-band .container { padding-top: 38px; padding-bottom: 42px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 30px; }
.section-heading h2 { max-width: 760px; margin: 0; font-size: clamp(1.4rem, 2vw, 1.95rem); line-height: 1.18; letter-spacing: -.02em; }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.pillar { position: relative; min-height: 148px; padding: 26px 26px 10px; border-right: 1px solid var(--line); }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; }
.pillar .index { display: block; margin-bottom: 12px; color: var(--cyan); font-size: .7rem; letter-spacing: .1em; }
.pillar h3 { margin-bottom: 8px; color: var(--cyan-soft); font-size: 1.08rem; }
.pillar p { color: var(--muted); font-size: .84rem; line-height: 1.65; }

.section { padding-block: clamp(56px, 6vw, 92px); border-bottom: 1px solid var(--line); }
.split-layout { display: grid; grid-template-columns: minmax(240px, .8fr) 1.7fr; gap: clamp(40px, 5vw, 84px); }
.sticky-intro { align-self: start; position: sticky; top: calc(var(--header-h) + 32px); padding-left: 30px; border-left: 1px solid var(--cyan); }
.section-index { display: inline-block; margin-bottom: 16px; color: var(--cyan); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.section-index::after { content: " —"; }
.sticky-intro h2, .why-lead h2, .editorial-split h2, .publications-preview h2 { font-size: clamp(1.8rem, 2.6vw, 2.9rem); line-height: 1.02; letter-spacing: -.03em; }
.sticky-intro p { color: var(--muted); }
.domain-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.domain-list li { display: flex; align-items: center; min-height: 68px; border-bottom: 1px solid var(--line); font-size: clamp(.98rem, 1.1vw, 1.15rem); }
.domain-list li:nth-child(odd) { padding-right: 36px; }
.domain-list li:nth-child(even) { padding-left: 36px; border-left: 1px solid var(--line); }
.domain-list span { width: 60px; color: var(--cyan); font-size: 1.25em; font-weight: 600; }

.why { background: rgba(3, 12, 21, .5); }
.why-lead { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 56px; margin-bottom: 52px; }
.why-lead h2 { margin-bottom: 0; }
.why-lead > p { margin-bottom: 6px; padding-left: 34px; border-left: 1px solid var(--cyan); font-size: clamp(1.15rem, 1.5vw, 1.5rem); line-height: 1.5; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.reason { min-height: 168px; padding: 32px clamp(20px, 3vw, 44px); border-right: 1px solid var(--line); }
.reason:first-child { padding-left: 0; }
.reason:last-child { border: 0; }
.signal-dot { display: block; width: 8px; height: 8px; margin-bottom: 28px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(142, 234, 53, .6); }
.reason h3 { font-size: 1.15rem; }
.reason p { color: var(--muted); font-size: .92rem; }

.principles { border-bottom: 1px solid var(--line); background: var(--surface); }
.principles-inner { display: grid; grid-template-columns: .6fr 2fr; align-items: stretch; min-height: 150px; }
.principles h2 { display: flex; align-items: center; margin: 0; padding-right: 30px; font-size: 1.35rem; border-right: 1px solid var(--line); }
.principles ol { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; margin: 0; padding: 0; list-style: none; }
.principles li { display: flex; align-items: center; gap: 20px; padding: 20px 24px; border-right: 1px solid var(--line); }
.principles li:last-child { border: 0; }
.principles li span { color: var(--cyan); font-size: 1.6rem; }

.editorial-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.editorial-split h2 { max-width: 600px; }
.statement { padding: 26px 0 26px 40px; border-left: 1px solid var(--cyan); color: #dbe5ea; font-size: clamp(1.1rem, 1.4vw, 1.4rem); line-height: 1.55; }
.section-heading.row { align-items: center; }
.publication-list { border-top: 1px solid var(--line); }
.publication-row { display: grid; grid-template-columns: 160px 1fr 100px 28px; align-items: center; gap: 28px; min-height: 86px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.publication-row:hover { padding-inline: 16px; background: rgba(17, 191, 255, .055); }
.publication-type { color: var(--cyan); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.publication-row strong { font-size: clamp(1rem, 1.3vw, 1.2rem); font-weight: 550; }
.publication-row time { color: var(--muted); font-size: .77rem; }
.publication-row > span:last-child { color: var(--cyan); font-size: 1.3rem; }
.partnership-cta { padding-block: 58px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(8, 29, 46, .95), rgba(4, 17, 28, .95)); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 60px; }
.cta-inner h2 { margin: 0; font-size: clamp(1.5rem, 2.1vw, 2.1rem); line-height: 1.12; }
.cta-inner p { margin: 0; color: var(--muted); }
.partnership-cta.compact { margin-top: 0; }

.page-hero { position: relative; min-height: 340px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: min(50vw, 700px); aspect-ratio: 1; right: -8%; top: 10%; border: 1px solid var(--line); border-radius: 50%; box-shadow: inset 0 0 0 8vw rgba(17, 191, 255, .015), inset 0 0 0 16vw rgba(17, 191, 255, .015); }
.page-grid { position: absolute; inset: 0 0 0 45%; opacity: .35; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 55px 55px; -webkit-mask-image: linear-gradient(90deg, transparent, #000); mask-image: linear-gradient(90deg, transparent, #000); }
.page-hero-inner { position: relative; z-index: 1; padding-block: 60px; }
.page-hero h1 { max-width: 880px; margin-bottom: 22px; font-size: clamp(2.3rem, 4.2vw, 3.9rem); line-height: 1.02; letter-spacing: -.035em; }
.page-hero p { max-width: 720px; margin: 0; color: #bac9d1; font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.65; }
.standard-content { border-bottom: 1px solid var(--line); }
.content-list { padding-bottom: 40px; }
.content-section { display: grid; grid-template-columns: 72px minmax(280px, 1.5fr) minmax(220px, 1fr); gap: clamp(28px, 4.5vw, 72px); padding-block: clamp(40px, 4.5vw, 64px); border-bottom: 1px solid var(--line); }
.content-section:not(:has(ul)) { grid-template-columns: 72px minmax(0, 1fr); }
.content-section:not(:has(ul)) p { max-width: 68ch; }
.content-section:last-child { border-bottom: 0; }
.content-number { color: var(--cyan); font-size: 1.15rem; font-weight: 600; }
.content-section h2 { margin-bottom: 14px; font-size: clamp(1.5rem, 2.2vw, 2.3rem); line-height: 1.08; letter-spacing: -.03em; }
.content-section p { margin: 0; color: #b9c8d0; font-size: 1rem; line-height: 1.75; }
.content-section ul { align-self: start; margin: 8px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.content-section li { position: relative; padding: 14px 0 14px 22px; border-bottom: 1px solid var(--line); color: #dbe4e9; font-size: .9rem; }
.content-section li::before { content: ""; position: absolute; left: 0; top: 22px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.form-page { padding-block: clamp(20px, 2.3vw, 34px); min-height: 680px; border-bottom: 1px solid var(--line); }
.form-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.48fr); gap: clamp(40px, 6vw, 88px); }
.form-intro { position: relative; }
.form-intro h1 { font-size: clamp(2.2rem, 3.2vw, 3.3rem); line-height: 1.05; letter-spacing: -.035em; }
.form-intro > p { max-width: 530px; color: #c2d0d7; font-size: 1.04rem; line-height: 1.85; }
.urgent-note { display: flex; gap: 20px; margin-top: 36px; padding: 22px; border: 1px solid rgba(142, 234, 53, .58); background: rgba(48, 100, 17, .08); }
.urgent-note > span { display: grid; place-items: center; flex: 0 0 32px; height: 32px; color: var(--green); border: 1px solid var(--green); border-radius: 50%; font-weight: 800; }
.urgent-note p { margin: 0; font-size: .86rem; }
.form-map { margin-top: 24px; height: 150px; opacity: .45; background: url("../img/belgium-observatory.png") 62% center / 680px auto no-repeat; -webkit-mask-image: linear-gradient(to bottom, #000, transparent); mask-image: linear-gradient(to bottom, #000, transparent); }
.form-panel { padding: clamp(20px, 1.8vw, 26px); border: 1px solid var(--line); background: rgba(6, 24, 38, .74); box-shadow: 0 28px 80px rgba(0, 0, 0, .2); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; }
.field { display: grid; gap: 8px; }
.field.full { margin-top: 14px; }
.field label { color: #dce6eb; font-size: .79rem; font-weight: 650; }
.field label span { color: var(--cyan); }
.field input, .field select, .field textarea {
    width: 100%; border: 1px solid rgba(173, 202, 217, .52); border-radius: 0;
    color: var(--text); background: rgba(4, 17, 28, .7);
    padding: 13px 15px; font-size: .88rem; transition: border .2s, box-shadow .2s;
}
.field input, .field select { min-height: 44px; }
.field textarea { resize: vertical; line-height: 1.6; }
#description { height: 110px; min-height: 96px; }
#evidence_notes { height: 72px; min-height: 64px; }
.field input::placeholder, .field textarea::placeholder { color: #738b98; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(17, 191, 255, .1); outline: none; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.check { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; color: #c7d3d9; font-size: .8rem; cursor: pointer; }
.check input { -webkit-appearance: none; appearance: none; flex: 0 0 20px; width: 20px; height: 20px; margin: 1px 0 0; border: 1px solid var(--muted); background: var(--bg); }
.check input:checked { border-color: var(--cyan); background: var(--cyan); box-shadow: inset 0 0 0 4px var(--bg); }
.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-submit p { max-width: 440px; margin: 0; color: var(--muted); font-size: .75rem; }
.form-submit p a { color: var(--cyan); }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-errors, .form-success { margin-bottom: 28px; padding: 20px 24px; border: 1px solid var(--danger); background: rgba(255, 151, 72, .08); }
.form-errors ul { margin-bottom: 0; }
.form-success { border-color: var(--green); background: rgba(142, 234, 53, .07); }
.form-success code { color: var(--green); }
.process-rail { background: var(--surface); border-bottom: 1px solid var(--line); }
.process-rail .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.process-rail article { display: flex; gap: 24px; min-height: 155px; padding: 32px; border-right: 1px solid var(--line); }
.process-rail article:last-child { border: 0; }
.process-rail article > span { color: var(--cyan); font-size: 2.6rem; line-height: 1; font-weight: 300; }
.process-rail h2 { margin-bottom: 5px; font-size: 1rem; }
.process-rail p { color: var(--muted); font-size: .82rem; }
.contact-details { margin: 48px 0; }
.contact-details div { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-details div:last-child { border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--cyan); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-details dd { margin: 4px 0 0; color: #d7e1e6; }
.small-note { padding-left: 20px; border-left: 1px solid var(--green); font-size: .82rem !important; color: var(--muted) !important; }

.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.not-found .container > span { color: var(--cyan); font-size: clamp(4.5rem, 13vw, 9.5rem); line-height: .8; font-weight: 200; opacity: .45; }
.not-found h1 { margin-top: 40px; font-size: clamp(2.4rem, 5vw, 5rem); }
.not-found p { color: var(--muted); }

.site-footer { background: var(--bg-deep); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; padding-top: 68px; padding-bottom: 60px; }
.footer-brand { margin-bottom: 18px; }
.footer-main p { color: var(--muted); font-size: .8rem; }
.footer-main h2 { margin-bottom: 18px; color: var(--cyan); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-main > div > a:not(.brand) { display: block; width: fit-content; margin: 8px 0; color: #abbcc5; font-size: .82rem; }
.footer-main > div > a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; padding-bottom: 24px; border-top: 1px solid var(--line); color: #708590; font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-breathe { to { transform: scale(1.025); filter: saturate(1.08); } }

@media (max-width: 1240px) {
    :root { --header-h: 76px; }
    .brand-full { display: none; }
    .site-nav { gap: clamp(12px, 1.4vw, 22px); }
    .header-tools { padding-left: 14px; gap: 12px; }
    .hero-copy { width: 62%; }
    .hero-art { background-position: 45% center; }
}

@media (max-width: 1080px) {
    .header-report { display: none; }
    .header-tools { margin-left: auto; padding-left: 0; border: 0; }
    .menu-toggle { display: block; }
    .site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0; height: auto;
        flex-direction: column; align-items: stretch; gap: 0; padding: 10px var(--gutter) 24px;
        border-bottom: 1px solid var(--line); background: rgba(3, 16, 27, .98);
        -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .32);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { height: auto; padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: .96rem; }
    .site-nav a::after { display: none; }
    .site-nav .nav-cta { display: inline-flex; justify-content: center; width: 100%; min-height: 52px; margin-top: 18px; padding: 0 22px; border-bottom: 0; background: var(--cyan); color: #00131e; }
    .site-nav .nav-cta:hover { background: var(--cyan-soft); color: #00131e; }
    .hero { min-height: 720px; }
    .hero-art { inset: 26% -35% 0 -5%; opacity: .55; background-position: center; background-size: cover; }
    .hero-copy { width: 80%; align-self: flex-start; padding-top: 110px; }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: 0; }
    .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split-layout, .editorial-split { grid-template-columns: 1fr; }
    .sticky-intro { position: static; }
    .why-lead { grid-template-columns: 1fr; gap: 30px; }
    .why-lead > p { max-width: 700px; }
    .principles-inner { grid-template-columns: 1fr; }
    .principles h2 { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
    .principles ol { grid-template-columns: repeat(2, 1fr); }
    .principles li:nth-child(2) { border-right: 0; }
    .principles li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .statement { max-width: 760px; }
    .cta-inner { grid-template-columns: 1fr 1fr; }
    .cta-inner .button { grid-column: 1 / 3; width: fit-content; }
    .content-section { grid-template-columns: 60px 1fr; }
    .content-section ul { grid-column: 2; }
    .form-layout { grid-template-columns: 1fr; }
    .form-map { display: none; }
    .form-intro > p { max-width: 780px; }
    .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 680px) {
    :root { --gutter: 20px; }
    .brand { grid-template-columns: 31px auto; }
    .brand-mark { width: 30px; height: 36px; }
    .brand-name { font-size: 1.32rem; }
    .header-inner { gap: 10px; }
    .header-tools { gap: 8px; }
    .lang-switch summary { padding: 0 10px; gap: 6px; }
    .lang-menu { min-width: 168px; }
    .hero { min-height: 760px; }
    .hero-art { inset: 35% -65% -2% -32%; background-size: auto 100%; opacity: .42; }
    .hero-copy { width: 100%; padding-top: 80px; }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
    .hero p { font-size: 1rem; line-height: 1.65; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .section-heading { display: block; }
    .section-heading p { margin-top: 16px; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pillar { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
    .domain-list { grid-template-columns: 1fr; }
    .domain-list li:nth-child(n) { padding: 18px 0; border-left: 0; }
    .why-lead { margin-bottom: 50px; }
    .why-lead > p { padding-left: 22px; }
    .reason-grid { grid-template-columns: 1fr; }
    .reason { min-height: auto; padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .principles ol { grid-template-columns: 1fr; }
    .principles li:nth-child(n) { min-height: 72px; border-right: 0; border-bottom: 1px solid var(--line); }
    .principles li:last-child { border-bottom: 0; }
    .publication-row { grid-template-columns: 1fr 24px; gap: 6px 15px; padding: 20px 0; }
    .publication-type, .publication-row time { grid-column: 1; }
    .publication-row > span:last-child { grid-column: 2; grid-row: 1 / 4; }
    .cta-inner { grid-template-columns: 1fr; gap: 20px; }
    .cta-inner .button { grid-column: 1; width: 100%; margin-top: 10px; }
    .page-hero { min-height: 390px; }
    .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
    .content-section { grid-template-columns: 1fr; gap: 20px; }
    .content-section ul { grid-column: 1; }
    .form-page { padding-top: 44px; }
    .form-intro h1 { font-size: clamp(2rem, 9vw, 2.9rem); }
    .form-panel { padding: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-submit { align-items: stretch; flex-direction: column; }
    .form-submit .button { width: 100%; }
    .process-rail .container { grid-template-columns: 1fr; }
    .process-rail article { min-height: 120px; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-main > div:first-child { grid-column: 1 / 3; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
