/* IBCSC Observatory system
   Final visual layer derived from the approved 2026 render. */

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy-regular.woff2") format("woff2"), url("../fonts/gilroy-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy-medium.woff2") format("woff2"), url("../fonts/gilroy-medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy-semibold.woff2") format("woff2"), url("../fonts/gilroy-semibold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy-bold.woff2") format("woff2"), url("../fonts/gilroy-bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --obs-ink: #06131d;
    --obs-deep: #020a12;
    --obs-surface: #0a202c;
    --obs-surface-2: #0d2734;
    --obs-cyan: #19b9e6;
    --obs-cyan-soft: #76d6ee;
    --obs-cyan-ink: #06637b;
    --obs-paper: #f2f0e9;
    --obs-paper-2: #e5e2d9;
    --obs-paper-white: #f8f7f2;
    --obs-paper-ink: #112630;
    --obs-paper-muted: #4f626b;
    --obs-muted: #91a4ad;
    --obs-line: rgba(139, 177, 193, .25);
    --obs-line-strong: rgba(25, 185, 230, .55);
    --obs-light-line: #c7c4ba;
    --obs-gutter: clamp(20px, 3.8vw, 58px);
    --obs-max: 1536px;
    --obs-header: 94px;
    --obs-ease: cubic-bezier(.22, 1, .36, 1);
    --obs-dropdown: 120;
    --obs-sticky: 100;
    --obs-font: "Gilroy", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

html { color-scheme: dark; scroll-padding-top: calc(var(--obs-header) + 18px); }
body {
    color: #f2f4f3;
    background:
        radial-gradient(circle at 82% 8%, rgba(25, 185, 230, .07), transparent 23rem),
        var(--obs-ink);
    font-family: var(--obs-font);
    font-size: 16px;
    line-height: 1.65;
}
body::before {
    opacity: .14;
    background-image:
        linear-gradient(rgba(100, 147, 166, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 147, 166, .13) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.container { width: min(100%, var(--obs-max)); padding-inline: var(--obs-gutter); }
.section { padding-block: clamp(44px, 4.4vw, 68px); }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Header and complete information architecture */
.site-header {
    z-index: var(--obs-sticky);
    min-height: var(--obs-header);
    border-color: var(--obs-line);
    background: rgba(3, 14, 23, .96);
    box-shadow: none;
}
.site-header.is-scrolled { background: rgba(3, 14, 23, .985); box-shadow: 0 18px 50px rgba(0, 10, 17, .25); }
.header-inner { min-height: var(--obs-header); gap: clamp(18px, 2vw, 34px); }
.brand { gap: 11px; }
.brand strong {
    color: #f3f1eb;
    font-family: var(--obs-font);
    font-size: clamp(1.75rem, 2.2vw, 2.12rem);
    font-weight: 700;
    letter-spacing: -.045em;
}
.brand span { color: #d5dbdc; font-size: .59rem; line-height: 1.15; }
.site-nav {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: clamp(10px, 1.25vw, 22px);
    margin-left: auto;
}
.nav-group { position: relative; display: flex; align-items: stretch; }
.nav-group summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 3px;
    color: #d9dfe1;
    font-size: .79rem;
    font-weight: 520;
    list-style: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s var(--obs-ease);
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 1px;
    background: var(--obs-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--obs-ease);
}
.nav-group summary svg { fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s var(--obs-ease); }
.nav-group[open] summary svg { transform: rotate(180deg); }
.nav-group summary:hover,
.nav-group[open] summary,
.nav-group.is-active summary { color: var(--obs-cyan-soft); }
.nav-group[open] summary::after,
.nav-group.is-active summary::after { transform: scaleX(1); }
.nav-group summary:focus-visible { outline: 2px solid var(--obs-cyan); outline-offset: 5px; }
.nav-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: -18px;
    z-index: var(--obs-dropdown);
    width: min(290px, calc(100vw - 40px));
    padding: 8px;
    border: 1px solid rgba(118, 214, 238, .34);
    background:
        linear-gradient(rgba(255,255,255,.018), rgba(255,255,255,0)),
        #071923;
    box-shadow: 0 26px 64px rgba(0, 7, 12, .48);
}
.nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(139, 177, 193, .14);
    color: #d2dadd;
    font-size: .78rem;
    transition: padding .2s var(--obs-ease), color .2s, background .2s;
}
.nav-menu a:last-child { border: 0; }
.nav-menu a:hover,
.nav-menu a.is-active { padding-left: 17px; color: var(--obs-cyan-soft); background: rgba(25, 185, 230, .07); }
.nav-menu a span { color: var(--obs-cyan); }
.header-tools { gap: 8px; padding-left: 2px; border: 0; }
.header-account {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 8px;
    color: #d8dfe1;
    font-size: .7rem;
    font-weight: 650;
}
.header-account:hover { color: var(--obs-cyan-soft); }
.header-account svg { flex: 0 0 auto; }
.lang-switch summary { min-height: 44px; padding-inline: 8px; border-color: transparent; background: transparent; }
.header-report {
    min-height: 44px;
    padding-inline: 18px;
    border-color: var(--obs-cyan);
    color: #02121a;
    background: var(--obs-cyan);
    font-size: .69rem;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.header-report:hover { color: #02121a; background: var(--obs-cyan-soft); }

/* Buttons and interactive controls */
.button {
    min-height: 50px;
    border-radius: 0;
    border-color: var(--obs-cyan);
    color: #02121a;
    background: var(--obs-cyan);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .055em;
    text-transform: uppercase;
    transition: transform .22s var(--obs-ease), color .22s, background .22s, border-color .22s, box-shadow .22s;
}
.button:hover { transform: translateY(-2px); background: var(--obs-cyan-soft); box-shadow: 0 12px 30px rgba(25, 185, 230, .16); }
.button:active { transform: translateY(0) scale(.985); }
.button-secondary { color: #eef2f2; background: transparent; border-color: rgba(238, 242, 242, .48); }
.button-secondary:hover { color: #02121a; border-color: var(--obs-cyan); background: var(--obs-cyan); }
.text-link { color: var(--obs-cyan); border-color: currentColor; }
.text-link:hover { color: var(--obs-cyan-soft); }

/* Approved home hero */
.page-home .hero {
    min-height: 478px;
    border-color: var(--obs-line);
    background: var(--obs-deep);
}
.page-home .hero-art {
    inset: 0;
    overflow: hidden;
    opacity: 1;
    background-image: url("../img/observatory-map-2026.webp");
    background-position: center;
    background-size: cover;
    transform-origin: 72% 52%;
    animation: homeMapDrift 20s var(--obs-ease) infinite alternate;
    filter: none;
    will-change: transform;
}
.page-home .hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background-image: url("../img/observatory-map-2026.webp");
    background-position: center;
    background-size: cover;
    filter: brightness(1.5) saturate(1.3);
    -webkit-mask-image: linear-gradient(102deg, transparent 0 38%, #000 49%, transparent 60% 100%);
    mask-image: linear-gradient(102deg, transparent 0 38%, #000 49%, transparent 60% 100%);
    -webkit-mask-size: 235% 100%;
    mask-size: 235% 100%;
    animation: homeMapTrace 10s ease-in-out infinite;
}
.page-home .hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .48;
    background:
        radial-gradient(circle at 70% 43%, rgba(25, 185, 230, .22), transparent 3.5%),
        radial-gradient(circle at 82% 61%, rgba(25, 185, 230, .16), transparent 4%),
        radial-gradient(circle at 56% 34%, rgba(133, 204, 49, .1), transparent 3%);
    animation: homeMapGlow 5.6s ease-in-out infinite alternate;
}
.hero-map-sweep {
    position: absolute;
    top: -14%;
    bottom: -14%;
    left: 42%;
    width: 15%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(109, 221, 242, .2), transparent);
    filter: blur(18px);
    mix-blend-mode: screen;
    transform: translate3d(-240%, 0, 0) skewX(-8deg);
    animation: homeMapSweep 12s ease-in-out infinite;
}
.hero-map-pulse {
    position: absolute;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    opacity: .3;
    background: #76d6ee;
    box-shadow: 0 0 0 0 rgba(118, 214, 238, .38), 0 0 16px rgba(118, 214, 238, .9);
    animation: homeMapPulse 3.8s ease-out infinite;
}
.hero-map-pulse::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(118, 214, 238, .46);
    border-radius: 50%;
}
.hero-map-pulse-a { left: 55%; top: 32%; }
.hero-map-pulse-b { left: 66%; top: 24%; animation-delay: .6s; }
.hero-map-pulse-c { left: 72%; top: 43%; animation-delay: 1.2s; }
.hero-map-pulse-d { left: 79%; top: 62%; animation-delay: 1.8s; }
.hero-map-pulse-e { left: 86%; top: 39%; animation-delay: 2.4s; }
.hero-map-pulse-f { left: 89%; top: 69%; animation-delay: 3s; background: #85cc31; }
@keyframes homeMapDrift {
    0% { transform: scale(1.012) translate3d(-.2%, .15%, 0); }
    48% { transform: scale(1.03) translate3d(.35%, -.3%, 0); }
    100% { transform: scale(1.02) translate3d(-.1%, .28%, 0); }
}
@keyframes homeMapTrace {
    0%, 15% { opacity: 0; -webkit-mask-position: 145% 0; mask-position: 145% 0; }
    35%, 65% { opacity: .72; }
    86%, 100% { opacity: 0; -webkit-mask-position: -110% 0; mask-position: -110% 0; }
}
@keyframes homeMapGlow { 100% { opacity: .82; filter: saturate(1.12); } }
@keyframes homeMapSweep {
    0%, 18% { opacity: 0; transform: translate3d(-240%, 0, 0) skewX(-8deg); }
    30%, 70% { opacity: .7; }
    84%, 100% { opacity: 0; transform: translate3d(330%, 0, 0) skewX(-8deg); }
}
@keyframes homeMapPulse {
    0% { opacity: .18; transform: scale(.72); box-shadow: 0 0 0 0 rgba(118, 214, 238, .4), 0 0 10px rgba(118, 214, 238, .5); }
    38% { opacity: 1; transform: scale(1); }
    100% { opacity: .05; transform: scale(1.3); box-shadow: 0 0 0 14px rgba(118, 214, 238, 0), 0 0 22px rgba(118, 214, 238, .8); }
}
.page-home .hero::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 10, 18, .99) 0%, rgba(2, 10, 18, .94) 33%, rgba(2, 10, 18, .36) 54%, rgba(2, 10, 18, .02) 78%),
        linear-gradient(0deg, rgba(2, 10, 18, .34), transparent 34%);
}
.page-home .hero::after { height: 15%; background: linear-gradient(to top, rgba(2, 10, 18, .65), transparent); }
.page-home .hero-copy { width: min(700px, 51%); padding: 40px 0 44px; }
.hero-eyebrow { margin-bottom: 20px; color: var(--obs-cyan); }
.page-home .hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-family: var(--obs-font);
    font-size: clamp(3.25rem, 4.2vw, 4.35rem);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.035em;
}
.page-home .hero h1::after {
    width: 96px;
    height: 4px;
    margin-top: 20px;
    border: 0;
    background: linear-gradient(90deg, #151515 0 33.333%, #fdda24 33.333% 66.666%, #ef3340 66.666% 100%);
    box-shadow: 0 0 0 1px rgba(242, 240, 233, .34);
}
.page-home .hero p { max-width: 560px; margin-bottom: 20px; color: #ced6d9; font-size: .98rem; line-height: 1.6; }
.page-home .hero-actions { display: inline-flex; vertical-align: middle; }
.page-home .hero .button:first-child { display: none; }
.page-home .hero .button { min-height: 48px; color: #f0f3f2; background: transparent; border-color: rgba(240, 243, 242, .68); }
.page-home .hero .button:hover { color: #02121a; border-color: var(--obs-cyan); background: var(--obs-cyan); }
.hero-status { margin-left: 48px; color: #d4dcde; }
.hero-status i { background: var(--obs-cyan); }
.hero-observatory {
    top: auto;
    bottom: 26px;
    right: var(--obs-gutter);
    width: 132px;
    transform: none;
    border-color: rgba(118, 214, 238, .3);
    background: rgba(3, 16, 25, .76);
    backdrop-filter: none;
}
.hero-observatory dd { font-family: var(--obs-font); font-weight: 600; }

/* Mission band with custom line icons */
.page-home .mission-band { color: #f2f3f1; background: #061822; border-color: var(--obs-line); }
.page-home .mission-band .container {
    height: auto;
    min-height: 112px;
    grid-template-columns: minmax(250px, .66fr) 2.4fr;
    gap: 20px;
    padding-block: 0;
}
.page-home .mission-band .section-heading { padding: 30px 20px 10px 0; }
.page-home .mission-band .section-heading h2 {
    color: #f1f1ed;
    font-family: var(--obs-font);
    font-size: clamp(1.08rem, 1.3vw, 1.28rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -.01em;
    text-transform: uppercase;
}
.page-home .pillar-grid { border: 0; }
.page-home .pillar {
    display: grid;
    grid-template-columns: auto 38px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 112px;
    padding: 15px 14px;
    border-left: 1px solid var(--obs-line);
    background: transparent;
}
.page-home .pillar::after { display: none; }
.page-home .pillar .index { float: none; margin: 0; color: #71848d; font-family: var(--obs-font); font-size: 1.2rem; font-weight: 500; }
.pillar-icon { color: var(--obs-cyan); }
.pillar-icon svg { display: block; width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.page-home .pillar h3 { margin: 0 0 3px; color: #f1f1ed; font-family: var(--obs-font); font-size: .92rem; font-weight: 600; text-transform: uppercase; }
.page-home .pillar p { margin: 0; color: #a8b7bd; font-size: .64rem; line-height: 1.4; }

/* Compact technology-news wire near the top of the homepage. */
.page-home .home-tech-news {
    color: var(--obs-paper-ink);
    border-top: 1px solid var(--obs-light-line);
    border-bottom: 1px solid var(--obs-light-line);
    background: var(--obs-paper-white);
}
.page-home .home-tech-news > .container { padding-block: 18px 22px; }
.page-home .home-tech-news-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 13px;
}
.page-home .home-tech-news-head > div > span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    color: #47616d;
    font-size: .7rem;
    font-weight: 650;
}
.page-home .home-tech-news-head > div > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0d9fbf;
    box-shadow: 0 0 0 4px rgba(13, 159, 191, .12);
}
.page-home .home-tech-news-head h2 {
    margin: 0;
    color: #0a2633;
    font-family: var(--obs-font);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.15;
}
.page-home .home-tech-news-head > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    color: #086c82;
    font-size: .76rem;
    font-weight: 700;
}
.page-home .home-tech-news-head > a b { font-size: 1rem; transition: transform .22s var(--obs-ease); }
.page-home .home-tech-news-head > a:hover b { transform: translateX(4px); }
.page-home .home-tech-news-head > a:focus-visible,
.page-home .home-tech-news-item:focus-visible { outline: 3px solid #0d9fbf; outline-offset: 3px; }
.page-home .home-tech-news-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #cbd2d2;
    border-bottom: 1px solid #cbd2d2;
}
.page-home .home-tech-news-item {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 16px;
    gap: 12px;
    align-items: center;
    min-width: 0;
    min-height: 94px;
    padding: 13px 14px;
    color: #0a2633;
    background: transparent;
    transition: background-color .22s var(--obs-ease);
}
.page-home .home-tech-news-item + .home-tech-news-item { border-left: 1px solid #cbd2d2; }
.page-home .home-tech-news-item:hover { background: #eaf5f6; }
.page-home .home-tech-news-item figure {
    width: 78px;
    aspect-ratio: 10 / 7;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #dce6e7;
}
.page-home .home-tech-news-item img { width: 100%; height: 100%; object-fit: cover; }
.page-home .home-tech-news-copy { min-width: 0; }
.page-home .home-tech-news-copy > span {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin-bottom: 5px;
    color: #506873;
    font-size: .62rem;
    font-weight: 650;
    line-height: 1.2;
}
.page-home .home-tech-news-copy > span i {
    min-width: 0;
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-home .home-tech-news-copy > span i::before { content: '·'; margin-right: 7px; }
.page-home .home-tech-news-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: #0a2633;
    font-size: .82rem;
    font-weight: 650;
    line-height: 1.28;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.page-home .home-tech-news-item > b {
    color: #0d839d;
    font-size: .85rem;
    transition: transform .22s var(--obs-ease);
}
.page-home .home-tech-news-item:hover > b { transform: translate(2px, -2px); }

@media (max-width: 1180px) {
    .page-home .home-tech-news-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-home .home-tech-news-item:nth-child(3) { border-left: 0; }
    .page-home .home-tech-news-item:nth-child(n + 3) { border-top: 1px solid #cbd2d2; }
}

@media (max-width: 620px) {
    .page-home .home-tech-news > .container { padding-block: 15px 18px; }
    .page-home .home-tech-news-head { align-items: center; margin-bottom: 10px; }
    .page-home .home-tech-news-head h2 { max-width: 18ch; font-size: 1.18rem; }
    .page-home .home-tech-news-head > a { min-height: 44px; font-size: 0; }
    .page-home .home-tech-news-head > a b { font-size: 1.2rem; }
    .page-home .home-tech-news-list {
        display: flex;
        overflow-x: auto;
        border-bottom: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }
    .page-home .home-tech-news-list::-webkit-scrollbar { display: none; }
    .page-home .home-tech-news-item {
        flex: 0 0 min(350px, calc(100vw - 58px));
        min-height: 98px;
        border-bottom: 1px solid #cbd2d2;
        scroll-snap-align: start;
    }
    .page-home .home-tech-news-item + .home-tech-news-item,
    .page-home .home-tech-news-item:nth-child(3) { border-top: 0; border-left: 1px solid #cbd2d2; }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .home-tech-news-head > a b,
    .page-home .home-tech-news-item,
    .page-home .home-tech-news-item > b { transition: none; }
}

/* Signed long-form analysis: compact light editorial desk below the news wire. */
.page-home .home-author-articles {
    padding-block: clamp(24px, 3vw, 38px);
    color: var(--obs-paper-ink);
    border-bottom: 1px solid var(--obs-light-line);
    background: var(--obs-paper);
}
.page-home .home-author-articles-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #153541;
}
.page-home .home-author-articles-head h2 {
    margin: 0;
    color: #0a2633;
    font-family: var(--obs-font);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 650;
    letter-spacing: -.03em;
    line-height: 1.08;
}
.page-home .home-author-articles-head p {
    max-width: 520px;
    margin: 5px 0 0;
    color: #4b626b;
    font-size: .8rem;
    line-height: 1.45;
}
.page-home .home-author-articles-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}
.page-home .home-author-articles-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: #076b80;
    font-size: .72rem;
    font-weight: 700;
}
.page-home .home-author-articles-more b { font-size: .84rem; transition: transform .22s var(--obs-ease); }
.page-home .home-author-articles-more:hover b { transform: translate(2px, -2px); }
.page-home .home-author-articles-position {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 37px;
    color: #62757d;
    font-size: .65rem;
    font-variant-numeric: tabular-nums;
}
.page-home .home-author-articles-position b { color: #0a2633; font-size: .84rem; font-weight: 650; }
.page-home .home-author-articles-position i { font-style: normal; }
.page-home .home-author-articles .carousel-controls { border-color: #9eacad; }
.page-home .home-author-articles .carousel-controls button {
    width: 43px;
    height: 42px;
    color: #076b80;
    border-color: #b7bfbd;
}
.page-home .home-author-articles .carousel-controls button:hover:not(:disabled) { color: #fff; background: #076b80; }
.page-home .home-author-articles .carousel-controls button:focus-visible,
.page-home .home-author-articles-more:focus-visible { outline: 3px solid #0d9fbf; outline-offset: 3px; }
.page-home .home-author-articles-viewport {
    position: relative;
    overflow: hidden;
}
.page-home .home-author-articles-viewport::after {
    content: '';
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 2;
    width: 30px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(242, 240, 233, 0), rgba(242, 240, 233, .96));
}
.page-home .home-author-articles-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 7px 30px 18px 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.page-home .home-author-articles-track::-webkit-scrollbar { display: none; }
.page-home .home-author-article {
    flex: 0 0 clamp(390px, 44vw, 535px);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #c8cecb;
    border-radius: 12px;
    background: #f8f7f2;
    box-shadow: 0 8px 24px rgba(16, 42, 52, .1);
    scroll-snap-align: start;
    transition: transform .24s var(--obs-ease), box-shadow .24s var(--obs-ease), border-color .24s var(--obs-ease);
}
.page-home .home-author-articles.is-short .home-author-articles-viewport::after { display: none; }
.page-home .home-author-articles.is-short .home-author-articles-track { padding-right: 4px; }
.page-home .home-author-articles.is-short .home-author-article { flex-basis: calc(50% - 12px); }
.page-home .home-author-article > a {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    height: 100%;
    min-height: 206px;
    padding: 15px;
    color: #0a2633;
    transition: background-color .22s var(--obs-ease);
}
.page-home .home-author-article.is-coverless > a { grid-template-columns: 1fr; }
.page-home .home-author-article figure {
    margin: 0;
    overflow: hidden;
    background: #d7dfdf;
}
.page-home .home-author-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s var(--obs-ease);
}
.page-home .home-author-article figure.is-contain { position: relative; background: #fff; }
.page-home .home-author-article figure.is-contain img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: none;
    height: 92%;
    object-fit: fill;
    transform: translate(-50%, -50%);
}
.page-home .home-author-article-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-block: 1px;
}
.page-home .home-author-article-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: #52666e;
    font-size: .65rem;
    line-height: 1.25;
}
.page-home .home-author-article-meta strong { color: #076b80; font-weight: 700; }
.page-home .home-author-article-meta time::before { content: '·'; margin-right: 9px; }
.page-home .home-author-article-title {
    display: -webkit-box;
    overflow: hidden;
    color: #092735;
    font-family: var(--obs-font);
    font-size: clamp(1.03rem, 1.45vw, 1.35rem);
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.16;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.page-home .home-author-article-summary {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 9px;
    color: #48616c;
    font-size: .75rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.page-home .home-author-article-read {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 11px;
    color: #415963;
    font-size: .65rem;
    font-weight: 600;
}
.page-home .home-author-article-read > span:last-child {
    color: #076b80;
    font-weight: 700;
    white-space: nowrap;
}
.page-home .home-author-article-read b { margin-left: 5px; font-size: .8rem; transition: transform .22s var(--obs-ease); }
.page-home .home-author-article:hover > a { background: #e8efed; }
.page-home .home-author-article:hover {
    z-index: 1;
    border-color: #9fb4b6;
    box-shadow: 0 14px 30px rgba(16, 42, 52, .15);
    transform: translateY(-3px);
}
.page-home .home-author-article:hover img { transform: scale(1.02); }
.page-home .home-author-article:hover figure.is-contain img { transform: translate(-50%, -50%) scale(1.01); }
.page-home .home-author-article:hover .home-author-article-read b { transform: translateX(5px); }
.page-home .home-author-article a:focus-visible { outline: 3px solid #0d9fbf; outline-offset: -3px; }

@media (max-width: 620px) {
    .page-home .home-author-articles { padding-block: 22px 27px; }
    .page-home .home-author-articles-head { display: grid; gap: 11px; margin-bottom: 11px; padding-bottom: 11px; }
    .page-home .home-author-articles-head h2 { font-size: 1.28rem; }
    .page-home .home-author-articles-head p { margin-top: 5px; font-size: .73rem; text-align: left; }
    .page-home .home-author-articles-actions { justify-content: space-between; gap: 10px; }
    .page-home .home-author-articles-more { min-height: 42px; font-size: .68rem; }
    .page-home .home-author-articles-position { margin-left: auto; }
    .page-home .home-author-articles .carousel-controls button { width: 42px; height: 42px; }
    .page-home .home-author-articles-viewport::after { width: 18px; }
    .page-home .home-author-articles-track { gap: 12px; padding: 7px 18px 17px 4px; }
    .page-home .home-author-article { flex-basis: min(350px, calc(100vw - 58px)); }
    .page-home .home-author-articles.is-short .home-author-articles-viewport::after { display: block; }
    .page-home .home-author-articles.is-short .home-author-articles-track { padding-right: 18px; }
    .page-home .home-author-articles.is-short .home-author-article { flex-basis: min(350px, calc(100vw - 58px)); }
    .page-home .home-author-article > a {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 13px;
        min-height: 174px;
        padding: 12px;
    }
    .page-home .home-author-article figure.is-contain img { height: 78%; }
    .page-home .home-author-article-meta { margin-bottom: 6px; font-size: .6rem; }
    .page-home .home-author-article-title { font-size: .92rem; -webkit-line-clamp: 4; }
    .page-home .home-author-article-summary { display: none; }
    .page-home .home-author-article-read { align-items: end; gap: 7px; font-size: .59rem; }
    .page-home .home-author-article-read > span:last-child { font-size: 0; }
    .page-home .home-author-article-read b { margin-left: 0; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .home-author-articles-track { scroll-behavior: auto; }
    .page-home .home-author-articles-more b,
    .page-home .home-author-article,
    .page-home .home-author-article > a,
    .page-home .home-author-article img,
    .page-home .home-author-article-read b { transition: none; }
}

/* Home: gateway to the practical TechBlog — vitrine, pas bannière */
.page-home .home-techblog-promo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(56px, 6vw, 96px);
    color: #eef4f6;
    background: #041824;
}
.page-home .home-techblog-media,
.page-home .home-techblog-media picture,
.page-home .home-techblog-media img,
.page-home .home-techblog-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.page-home .home-techblog-media { z-index: 0; }
.page-home .home-techblog-media img { object-fit: cover; object-position: 46% center; }
.page-home .home-techblog-shade {
    background:
        linear-gradient(90deg, rgba(4, 20, 31, .96) 0%, rgba(4, 20, 31, .88) 30%, rgba(4, 20, 31, .5) 52%, rgba(4, 20, 31, .28) 78%, rgba(4, 20, 31, .34) 100%),
        linear-gradient(180deg, rgba(4, 20, 31, .42), rgba(4, 20, 31, .12) 45%, rgba(4, 20, 31, .58));
}
.page-home .home-techblog-promo::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset-inline: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--obs-cyan), rgba(25, 185, 230, 0) 62%);
}

.page-home .home-techblog-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
    gap: clamp(32px, 4vw, 72px);
}

.page-home .home-techblog-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px !important;
    color: #86e2f4;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.page-home .home-techblog-kicker i { width: 26px; height: 2px; background: #ffb24a; }

.page-home .home-techblog-copy h2 {
    max-width: 17ch;
    margin: 0;
    color: #fff;
    font-family: var(--obs-font);
    font-size: clamp(2.1rem, 3.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.03em;
    text-transform: none;
}

.page-home .home-techblog-intro {
    max-width: 46ch;
    margin: 18px 0 0 !important;
    color: #c6d6dc;
    font-size: clamp(.95rem, 1.05vw, 1.08rem);
    line-height: 1.6;
}

.page-home .home-techblog-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.page-home .home-techblog-stats li {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin: 0;
}
.page-home .home-techblog-stats li + li { padding-left: 34px; border-left: 1px solid rgba(134, 226, 244, .2); }
.page-home .home-techblog-stats strong {
    color: #fff;
    font-family: var(--obs-font);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.page-home .home-techblog-stats span {
    color: #8fb0bb;
    font-size: .74rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.page-home .home-techblog-details {
    max-width: 44ch;
    margin: 22px 0 0 !important;
    padding-top: 18px;
    border-top: 1px solid rgba(134, 226, 244, .18);
    color: #86a3ae;
    font-size: .76rem;
    line-height: 1.5;
}

.page-home a.home-techblog-action {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 22px;
    color: #03202b;
    background: var(--obs-cyan);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}
.page-home a.home-techblog-action b { font-size: 1rem; transition: transform .25s var(--obs-ease); }
.page-home a.home-techblog-action:hover { background: #4fd2f5; }
.page-home a.home-techblog-action:hover b { transform: translateX(5px); }
.page-home a.home-techblog-action:focus-visible { outline: 3px solid #ffb24a; outline-offset: 4px; }

/* Colonne droite : les trois derniers guides, réellement cliquables */
.page-home .home-techblog-latest {
    padding: clamp(24px, 2.6vw, 34px);
    background: rgba(3, 17, 26, .88);
    border: 1px solid rgba(134, 226, 244, .2);
    backdrop-filter: blur(3px);
}
.page-home .home-techblog-latest-title {
    margin: 0 0 6px !important;
    color: #86e2f4;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.page-home .home-techblog-latest ul { margin: 0; padding: 0; list-style: none; }
.page-home .home-techblog-latest li { margin: 0; border-top: 1px solid rgba(134, 226, 244, .14); }

.page-home .home-techblog-latest a {
    display: block;
    padding: 16px 34px 16px 0;
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: padding-left .22s var(--obs-ease);
}
.page-home .home-techblog-latest a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 4px;
    color: #86e2f4;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-6px, -50%);
    transition: opacity .22s ease, transform .22s var(--obs-ease);
}
.page-home .home-techblog-latest a:hover { padding-left: 10px; }
.page-home .home-techblog-latest a:hover::after { opacity: 1; transform: translate(0, -50%); }
.page-home .home-techblog-latest a:focus-visible { outline: 2px solid #86e2f4; outline-offset: 3px; }

.page-home .home-techblog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7fa1ad;
    font-size: .68rem;
    letter-spacing: .04em;
}
.page-home .home-techblog-meta em { font-style: normal; padding-left: 10px; border-left: 1px solid rgba(134, 226, 244, .28); }

.page-home .home-techblog-latest strong {
    display: block;
    margin: 7px 0 5px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}
.page-home .home-techblog-latest a:hover strong { color: #86e2f4; }
.page-home .home-techblog-topic { display: block; color: #7fa1ad; font-size: .72rem; }

@media (max-width: 1024px) {
    .page-home .home-techblog-inner { grid-template-columns: 1fr; gap: 30px; }
    .page-home .home-techblog-copy h2 { max-width: 22ch; }
    .page-home .home-techblog-shade {
        background:
            linear-gradient(180deg, rgba(4, 20, 31, .58) 0%, rgba(4, 20, 31, .78) 58%, rgba(4, 20, 31, .9) 100%),
            linear-gradient(90deg, rgba(4, 20, 31, .86), rgba(4, 20, 31, .3));
    }
}

@media (max-width: 620px) {
    .page-home .home-techblog-promo { padding-block: 44px; }
    .page-home .home-techblog-stats { gap: 22px; }
    .page-home .home-techblog-stats strong { font-size: 1.6rem; }
    .page-home a.home-techblog-action { width: 100%; justify-content: space-between; }
    .page-home .home-techblog-latest { padding: 18px; }
}

/* Home: sustained visual world below the fold */
.page-home .section { position: relative; isolation: isolate; padding-block: clamp(42px, 4vw, 62px); }
.page-home .section-heading h2,
.page-home .home-offers h2,
.page-home .sticky-intro h2,
.page-home .why-lead h2,
.page-home .editorial-split h2,
.page-home .home-hygiene h2 {
    font-family: var(--obs-font);
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.page-home .home-ai-lab {
    position: relative;
    overflow: hidden;
    padding-block: clamp(72px, 7vw, 116px) clamp(82px, 8vw, 132px);
    color: var(--obs-paper-ink);
    background: var(--obs-paper);
}
.page-home .home-ai-lab::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background:
        radial-gradient(circle at 84% 8%, rgba(22, 142, 173, .14), transparent 26%),
        radial-gradient(rgba(17, 38, 48, .16) .55px, transparent .55px) 0 0 / 6px 6px;
}
.page-home .home-ai-lab::after {
    content: "";
    position: absolute;
    top: -210px;
    right: -170px;
    width: 520px;
    aspect-ratio: 1;
    border: 1px solid rgba(22, 142, 173, .17);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(22, 142, 173, .035), 0 0 0 108px rgba(22, 142, 173, .02);
    pointer-events: none;
}
.page-home .home-ai-lab-art {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .23;
    background:
        linear-gradient(90deg, transparent 0 49.9%, rgba(17, 38, 48, .12) 50%, transparent 50.1%) 0 0 / 150px 150px,
        linear-gradient(0deg, transparent 0 49.9%, rgba(17, 38, 48, .1) 50%, transparent 50.1%) 0 0 / 150px 150px;
    mask-image: linear-gradient(90deg, transparent 0, #000 62%, #000 100%);
}
.page-home .home-ai-lab > .container { position: relative; z-index: 1; }
.page-home .home-ai-lab .reveal { opacity: 1; transform: none; }
.page-home .home-ai-lab-head {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
    gap: clamp(44px, 8vw, 130px);
    align-items: end;
    margin-bottom: clamp(36px, 4vw, 58px);
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(17, 38, 48, .26);
}
.page-home .home-ai-lab-head > div { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.page-home .home-ai-lab-head .section-index { margin-top: 11px; color: var(--obs-cyan-ink); font-variant-numeric: tabular-nums; }
.page-home .home-ai-lab-head h2 {
    max-width: 13ch;
    margin: 0;
    color: var(--obs-paper-ink);
    font-size: clamp(2.7rem, 4.5vw, 5rem);
    line-height: .89;
    letter-spacing: -.055em;
    text-wrap: balance;
}
.page-home .home-ai-lab-head p {
    max-width: 62ch;
    margin: 0;
    padding: 6px 0 6px 30px;
    border-left: 2px solid var(--obs-cyan);
    color: var(--obs-paper-muted);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.58;
    text-wrap: pretty;
}
.home-ai-stage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}
.home-ai-feature,
.home-ai-network,
.home-ai-direction {
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform .35s cubic-bezier(.2,.75,.25,1), box-shadow .35s ease, border-color .25s ease, background-color .25s ease;
}
.home-ai-feature:focus-visible,
.home-ai-network:focus-visible,
.home-ai-direction:focus-visible,
.home-ai-cta:focus-visible { outline: 3px solid var(--obs-cyan); outline-offset: 4px; }
.home-ai-feature,
.home-ai-network { min-height: clamp(420px, 33vw, 510px); }
.home-ai-feature {
    grid-column: span 7;
    display: grid;
    align-items: end;
    color: #f2f0e9;
    background: #061824;
    box-shadow: 0 28px 70px rgba(6, 24, 36, .2);
}
.home-ai-feature-visual { position: absolute; inset: 0; }
.home-ai-feature-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 14, 22, .06) 20%, rgba(3, 14, 22, .28) 54%, rgba(3, 14, 22, .96) 100%);
}
.home-ai-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: saturate(.78) contrast(1.04);
    transform: scale(1.001);
    transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .45s ease;
}
.home-ai-feature-copy,
.home-ai-network-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: start;
    padding: clamp(26px, 3vw, 42px);
}
.home-ai-card-index {
    color: #6bd8ef;
    font-family: var(--obs-font);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    font-variant-numeric: tabular-nums;
}
.home-ai-feature-copy strong,
.home-ai-network-copy strong {
    max-width: 18ch;
    margin: 15px 0 10px;
    color: inherit;
    font-family: var(--obs-font);
    font-size: clamp(1.55rem, 2.6vw, 2.7rem);
    line-height: .98;
    letter-spacing: -.025em;
    text-transform: uppercase;
    text-wrap: balance;
}
.home-ai-feature-copy small,
.home-ai-network-copy small {
    max-width: 52ch;
    color: rgba(238, 242, 240, .76);
    font-size: .88rem;
    line-height: 1.55;
}
.home-ai-card-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: #fff;
    background: rgba(3, 14, 22, .22);
    backdrop-filter: blur(8px);
    transition: color .25s ease, background-color .25s ease, transform .35s cubic-bezier(.2,.75,.25,1);
}
.home-ai-feature:hover,
.home-ai-network:hover { transform: translateY(-7px); box-shadow: 0 34px 80px rgba(6, 24, 36, .26); }
.home-ai-feature:hover img { transform: scale(1.045); filter: saturate(.95) contrast(1.06); }
.home-ai-feature:hover .home-ai-card-arrow,
.home-ai-network:hover .home-ai-card-arrow { color: #061824; background: #6bd8ef; transform: rotate(45deg); }
.home-ai-network {
    grid-column: span 5;
    display: grid;
    align-items: end;
    color: #f2f0e9;
    background: #0b2633;
    box-shadow: 0 28px 70px rgba(6, 24, 36, .16);
}
.home-ai-network::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(4, 18, 28, .28) 56%, rgba(4, 18, 28, .96) 100%);
}
.home-ai-network-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 18%, rgba(83, 207, 232, .15), transparent 26%),
        radial-gradient(rgba(169, 222, 232, .18) .6px, transparent .6px) 0 0 / 7px 7px;
}
.home-ai-network-visual::before,
.home-ai-network-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(106, 216, 239, .2);
    border-radius: 50%;
}
.home-ai-network-visual::before { top: -110px; right: -100px; width: 360px; height: 360px; }
.home-ai-network-visual::after { top: -58px; right: -48px; width: 250px; height: 250px; }
.home-ai-network-visual svg { position: absolute; inset: 0; width: 100%; height: 72%; }
.home-ai-network-lines { fill: none; stroke: rgba(108, 218, 239, .47); stroke-width: 1.4; stroke-dasharray: 7 9; animation: homeAiDash 16s linear infinite; }
.home-ai-network-nodes { fill: #0b2633; stroke: #6bd8ef; stroke-width: 2; }
.home-ai-network-nodes circle:nth-child(3n+1) { fill: rgba(107, 216, 239, .18); animation: homeAiPulse 3.4s ease-in-out infinite; }
.home-ai-network-visual i {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6bd8ef;
    box-shadow: 0 0 0 8px rgba(107, 216, 239, .1), 0 0 22px rgba(107, 216, 239, .8);
    animation: homeAiPulse 2.8s ease-in-out infinite;
}
.home-ai-network-visual i:nth-of-type(1) { top: 18%; left: 17%; }
.home-ai-network-visual i:nth-of-type(2) { top: 34%; right: 20%; animation-delay: .8s; }
.home-ai-network-visual i:nth-of-type(3) { top: 49%; left: 48%; animation-delay: 1.5s; }
.home-ai-directions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.home-ai-direction {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    min-height: 244px;
    padding: 25px;
    border: 1px solid rgba(17, 38, 48, .2);
    background: rgba(248, 247, 242, .68);
    box-shadow: 0 18px 44px rgba(6, 24, 36, .045);
}
.home-ai-direction-top { display: flex; justify-content: space-between; align-items: start; gap: 18px; }
.home-ai-direction-top .home-ai-card-index { color: var(--obs-cyan-ink); }
.home-ai-direction-top svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: var(--obs-cyan-ink);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .35s cubic-bezier(.2,.75,.25,1), stroke .25s ease;
}
.home-ai-direction strong {
    align-self: end;
    margin: 32px 0 10px;
    color: var(--obs-paper-ink);
    font-family: var(--obs-font);
    font-size: clamp(1.14rem, 1.5vw, 1.48rem);
    line-height: 1.05;
    letter-spacing: -.015em;
    text-transform: uppercase;
    text-wrap: balance;
}
.home-ai-direction small { color: var(--obs-paper-muted); font-size: .8rem; line-height: 1.5; }
.home-ai-direction-arrow { justify-self: end; margin-top: 20px; color: var(--obs-cyan-ink); font-size: 1.15rem; transition: transform .3s ease; }
.home-ai-direction:hover {
    border-color: #0b2633;
    color: #f2f0e9;
    background: #0b2633;
    box-shadow: 0 24px 56px rgba(6, 24, 36, .17);
    transform: translateY(-6px);
}
.home-ai-direction:hover strong { color: #f2f0e9; }
.home-ai-direction:hover small { color: rgba(238, 242, 240, .72); }
.home-ai-direction:hover .home-ai-card-index,
.home-ai-direction:hover .home-ai-direction-arrow { color: #6bd8ef; }
.home-ai-direction:hover svg { stroke: #6bd8ef; transform: translateY(-4px) rotate(-3deg); }
.home-ai-direction:hover .home-ai-direction-arrow { transform: translateX(5px); }
.home-ai-feature:active,
.home-ai-network:active,
.home-ai-direction:active { transform: translateY(-1px) scale(.99); }
.home-ai-partners {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    margin-top: 14px;
    border: 1px solid rgba(17, 38, 48, .2);
    background: rgba(248, 247, 242, .72);
    box-shadow: 0 18px 44px rgba(6, 24, 36, .045);
}
.home-ai-partners-copy {
    display: grid;
    align-content: center;
    padding: clamp(25px, 3vw, 38px);
    border-right: 1px solid rgba(17, 38, 48, .2);
}
.home-ai-partners-copy > span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--obs-cyan-ink);
    font-family: var(--obs-font);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.home-ai-partners-copy > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #85cc31;
    box-shadow: 0 0 0 6px rgba(133, 204, 49, .1), 0 0 18px rgba(133, 204, 49, .38);
    animation: homeAiPulse 3.2s ease-in-out infinite;
}
.home-ai-partners-copy > strong {
    max-width: 29ch;
    color: var(--obs-paper-ink);
    font-family: var(--obs-font);
    font-size: clamp(1.25rem, 1.75vw, 1.65rem);
    line-height: 1.08;
    letter-spacing: -.018em;
    text-wrap: balance;
}
.home-ai-partners-copy > p {
    max-width: 53ch;
    margin: 12px 0 0;
    color: var(--obs-paper-muted);
    font-size: .78rem;
    line-height: 1.55;
    text-wrap: pretty;
}
.home-ai-partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-ai-partner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr auto;
    min-width: 0;
    min-height: 190px;
    overflow: hidden;
    padding: clamp(24px, 2.6vw, 34px);
    color: var(--obs-paper-ink);
    text-decoration: none;
    background: rgba(255, 255, 255, .38);
    transition: background-color .28s ease, box-shadow .28s ease, transform .35s cubic-bezier(.2,.75,.25,1);
}
.home-ai-partner + .home-ai-partner { border-left: 1px solid rgba(17, 38, 48, .2); }
.home-ai-partner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--obs-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2,.75,.25,1);
}
.home-ai-partner-logo {
    grid-column: 1 / -1;
    align-self: start;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding-right: 34px;
}
.home-ai-partner-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}
.home-ai-partner-cisco .home-ai-partner-logo img { width: 92px; height: 92px; }
.home-ai-partner-mikrotik .home-ai-partner-logo img { width: min(184px, 100%); }
.home-ai-partner-meta { align-self: end; display: grid; gap: 5px; min-width: 0; }
.home-ai-partner-meta small {
    color: var(--obs-paper-muted);
    font-size: .7rem;
    line-height: 1.35;
}
.home-ai-partner-meta b {
    color: var(--obs-cyan-ink);
    font-family: var(--obs-font);
    font-size: .67rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.home-ai-partner-arrow {
    align-self: end;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(17, 38, 48, .22);
    border-radius: 50%;
    color: var(--obs-cyan-ink);
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .35s cubic-bezier(.2,.75,.25,1);
}
.home-ai-partner:hover {
    z-index: 1;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 48px rgba(6, 24, 36, .13);
    transform: translateY(-5px);
}
.home-ai-partner:hover::before { transform: scaleX(1); }
.home-ai-partner:hover .home-ai-partner-arrow {
    color: #061824;
    border-color: #6bd8ef;
    background: #6bd8ef;
    transform: rotate(45deg);
}
.home-ai-partner:active { transform: translateY(-1px) scale(.99); }
.home-ai-partner:focus-visible { z-index: 2; outline: 3px solid var(--obs-cyan); outline-offset: -3px; }
.home-ai-footer { display: flex; align-items: center; gap: 26px; margin-top: 28px; }
.page-home .home-ai-lab .home-ai-cta {
    flex: 0 0 auto;
    min-height: 62px;
    margin: 0;
    padding-inline: 28px;
    color: var(--obs-paper);
    border-color: var(--obs-paper-ink);
    background: var(--obs-paper-ink);
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.page-home .home-ai-lab .home-ai-cta:hover { color: #061824; border-color: #6bd8ef; background: #6bd8ef; transform: translateY(-3px); }
.home-ai-route { position: relative; flex: 1; height: 1px; overflow: visible; background: rgba(17, 38, 48, .22); }
.home-ai-route::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--obs-cyan); }
.home-ai-route i {
    position: absolute;
    top: -2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--obs-cyan);
    box-shadow: 0 0 12px rgba(22, 142, 173, .7);
    animation: homeAiRoute 5s ease-in-out infinite;
}
@keyframes homeAiDash { to { stroke-dashoffset: -160; } }
@keyframes homeAiPulse { 50% { opacity: .42; transform: scale(.82); } }
@keyframes homeAiRoute { 0%, 8% { left: 0; opacity: 0; } 18%, 82% { opacity: 1; } 92%, 100% { left: calc(100% - 5px); opacity: 0; } }

.page-home .home-board,
.page-home .domains {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background:
        radial-gradient(rgba(17, 38, 48, .1) .55px, transparent .55px) 0 0 / 6px 6px,
        var(--obs-paper);
}
.page-home .home-board::before,
.page-home .home-board::after,
.page-home .home-jobs::after { display: none; }
.page-home .home-board-strip {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background: var(--obs-paper-2);
}
.page-home .home-board-strip-inner { min-height: 54px; padding-block: 7px; }
.page-home .home-board-strip-inner > p { color: var(--obs-paper-muted); }
.page-home .strip-label,
.page-home .strip-links a { color: var(--obs-cyan-ink); }
.page-home .strip-links a { border-color: #9eb5bb; }
.page-home .strip-links a:hover { color: var(--obs-paper-ink); border-color: #168eac; }
.page-home .home-board .section-heading h2,
.page-home .domains h2,
.page-home .home-board .board-card h3 { color: var(--obs-paper-ink); }
.page-home .home-board .section-heading p,
.page-home .home-board .board-card p,
.page-home .home-board .board-card-meta { color: var(--obs-paper-muted); }
.page-home .home-board .board-card-kicker > span,
.page-home .home-board .board-card-arrow { color: var(--obs-cyan-ink); }
.page-home .home-board .board-card-kicker time { color: var(--obs-paper-muted); }
.page-home .home-carousel-track .board-card {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background: rgba(255, 255, 255, .28);
    backdrop-filter: none;
}
.page-home .home-jobs-track .board-card { min-height: 220px; padding: 22px; }
.page-home .home-jobs-track .board-card:hover { padding: 22px; border-color: #168eac; background: rgba(255, 255, 255, .62); }
.page-home .home-jobs-track .board-card {
    height: 250px;
    min-height: 250px;
    overflow: hidden;
}
.page-home .home-jobs-track .board-card h3,
.page-home .home-jobs-track .board-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.page-home .home-jobs-track .board-card h3 { -webkit-line-clamp: 2; }
.page-home .home-jobs-track .board-card p { -webkit-line-clamp: 2; }
.page-home .home-board .home-carousel-viewport::after {
    background: linear-gradient(90deg, transparent, rgba(242, 240, 233, .96));
}
.page-home .home-board .carousel-controls { border-color: #84a9b4; }
.page-home .home-board .carousel-controls button { color: var(--obs-cyan-ink); border-color: #aebfc1; }
.page-home .home-board .carousel-controls button:hover:not(:disabled) { color: #fff; background: #087b98; }

.page-home .home-offers,
.page-home .home-board,
.page-home .domains,
.page-home .why {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background:
        radial-gradient(rgba(17, 38, 48, .11) .55px, transparent .55px) 0 0 / 6px 6px,
        var(--obs-paper);
}
.page-home .home-offers h2,
.page-home .home-offers h3,
.page-home .domains h2,
.page-home .domains li,
.page-home .why h2,
.page-home .why h3 { color: var(--obs-paper-ink); }
.page-home .home-offers p,
.page-home .domains p,
.page-home .why p,
.page-home .home-board p { color: var(--obs-paper-muted); }
.page-home .offer-card {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background: rgba(255,255,255,.18);
    box-shadow: none;
}
.page-home .offer-card:hover { border-color: #178eac; background: rgba(255,255,255,.48); }
.page-home .offer-card p,
.page-home .offer-points,
.page-home .vat-display { color: var(--obs-paper-muted); }
.page-home .home-offers .commercial-kicker,
.page-home .home-offers .offers-kicker,
.page-home .home-offers .offer-tag,
.page-home .home-offers .offer-price strong,
.page-home .home-offers .offer-more { color: var(--obs-cyan-ink); }
.page-home .home-offers .offer-price strong { font-weight: 500; }
.page-home .home-offers .commercial-kicker::before,
.page-home .home-offers .offers-kicker::before,
.page-home .home-offers .offer-tag::before,
.page-home .home-offers .offer-points li::before {
    background: #168eac;
    box-shadow: none;
}
.page-home .home-offers .offer-tag,
.page-home .home-offers .offer-badge { color: var(--obs-cyan-ink); border-color: #79a9b5; }
.page-home .home-offers .offer-price em,
.page-home .home-offers .offer-price > span,
.page-home .home-offers .offer-points li { color: #385665; }
.page-home .home-offers .offer-points,
.page-home .home-offers .offer-points li { border-color: var(--obs-light-line); }
.page-home .home-offers .offer-card:hover h3 { color: #064f65; }
.commercial-intro .commercial-kicker,
.commercial-intro .offers-kicker { color: var(--obs-cyan-ink); }
.commercial-intro .commercial-kicker::before,
.commercial-intro .offers-kicker::before {
    background: var(--obs-cyan-ink);
    box-shadow: none;
}
.page-home .publication-list,
.page-home .publication-row { border-color: var(--obs-light-line); }
.page-home .publication-row { color: var(--obs-paper-ink); }
.page-home .publication-row:hover { background: rgba(17, 38, 48, .045); }
.page-home .reason { border-color: var(--obs-light-line); }

.page-home .principles,
.page-home .cooperation,
.page-home .publications-preview,
.page-home .home-articles,
.page-home .home-hygiene {
    color: #f1f3f2;
    border-color: var(--obs-line);
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .975), rgba(3, 15, 24, .88)),
        url("../img/observatory-map-2026.webp") center / cover;
}
.page-home .home-hygiene {
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .9), rgba(3, 15, 24, .76) 52%, rgba(3, 15, 24, .88)),
        url("../img/home-hygiene-digital-safety-2026.webp") center / cover no-repeat;
}
.page-home .principles h2,
.page-home .principles li,
.page-home .cooperation h2,
.page-home .publications-preview h2,
.page-home .home-articles h2,
.page-home .home-hygiene h2,
.page-home .home-hygiene h3 { color: #f1f3f2; }
.page-home .principles h2,
.page-home .principles li,
.page-home .publication-list,
.page-home .publication-row,
.page-home .hygiene-signals,
.page-home .hygiene-signal,
.page-home .hygiene-contacts,
.page-home .hygiene-contact { border-color: var(--obs-line); }
.page-home .publications-preview p,
.page-home .publication-row time,
.page-home .home-hygiene p,
.page-home .home-hygiene .hygiene-contact span,
.page-home .home-hygiene .hygiene-contact small { color: #aebdc3; }
.page-home .publication-row { color: #edf1f1; }
.page-home .publication-type,
.page-home .publication-row > span:last-child,
.page-home .publications-preview .text-link { color: var(--obs-cyan-soft); }
.page-home .publication-row:hover { background: rgba(25, 185, 230, .06); }
.page-home .home-hygiene .hygiene-signal em { color: #e4eaeb; }
.page-home .home-hygiene .hygiene-contact strong { color: var(--obs-cyan-soft); }
.page-home .home-articles .home-carousel-viewport::after {
    background: linear-gradient(90deg, transparent, rgba(3, 15, 24, .94));
}
.page-home .partnership-cta { background: #071923; }

/* Compact homepage rhythm */
.page-home .section-heading { margin-bottom: 20px; }
.page-home .home-offers-head,
.page-home .home-hygiene-head { margin-bottom: 20px; }
.page-home .offers-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 1px 1px 12px;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.page-home .offers-grid::-webkit-scrollbar { display: none; }
.page-home .offer-card {
    flex: 0 0 min(410px, calc(100vw - 116px));
    min-height: 0;
    padding: 20px;
    border: 1px solid var(--obs-light-line);
    scroll-snap-align: start;
}
.page-home .offer-card-top { margin-bottom: 13px; }
.page-home .offer-card > p { margin-bottom: 12px; line-height: 1.5; }
.page-home .offer-points { margin-bottom: 14px; }
.page-home .offer-points li { padding-block: 7px; line-height: 1.45; }
.page-home .offer-points li::before { top: 13px; }
.page-home .domain-list li { min-height: 48px; }
.page-home .why-lead { margin-bottom: 24px; }
.page-home .reason { min-height: 112px; padding-block: 20px; }
.page-home .signal-dot { margin-bottom: 14px; }
.page-home .principles-inner { min-height: 96px; }
.page-home .principles li { padding-block: 14px; }
.page-home .cooperation { padding-block: clamp(38px, 3.5vw, 54px); }
.page-home .publication-row { min-height: 58px; }
.page-home .home-hygiene { padding-block: clamp(40px, 3.8vw, 56px); }
.page-home .hygiene-signal { padding-block: 18px 16px; }
.page-home .hygiene-signal svg { margin-bottom: 10px; }
.page-home .hygiene-rule { padding-block: 12px; }
.page-home .hygiene-contact { padding-block: 14px; }
.page-home .partnership-cta { padding-block: 34px; }
.site-footer .footer-main { padding-top: 48px; padding-bottom: 40px; }

/* Shared internal page worlds */
.page-hero,
.commercial-hero,
.board-hero,
.ai-lab-hero {
    position: relative;
    color: #f1f3f2;
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .98) 0%, rgba(3, 15, 24, .9) 52%, rgba(3, 15, 24, .42) 100%),
        url("../img/observatory-map-2026.webp") center right / cover;
}
.page-hero::after { border-color: rgba(118, 214, 238, .15); }
.page-hero h1,
.commercial-hero h1,
.board-hero h1,
.ai-lab-hero h1,
.auth-shell > header h1,
.member-header h1 {
    font-family: var(--obs-font);
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.page-hero h1 { max-width: 960px; font-size: clamp(3rem, 5vw, 5.2rem); }
.page-hero p { color: #c2cfd4; }
.breadcrumbs { color: #91a4ad; }

.standard-content,
.commercial-intro,
.commercial-services-preview,
.pricing-popular,
.pricing-table-section,
.board-results,
.member-page {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background:
        radial-gradient(rgba(17, 38, 48, .11) .55px, transparent .55px) 0 0 / 6px 6px,
        var(--obs-paper);
}
.standard-content h1,
.standard-content h2,
.standard-content h3,
.commercial-intro h2,
.commercial-services-preview h2,
.commercial-services-preview h3,
.board-results h2,
.board-results h3,
.member-page h1,
.member-page h2,
.member-page h3 { color: var(--obs-paper-ink); }
.standard-content p,
.standard-content li,
.commercial-intro p,
.commercial-services-preview p,
.board-results p,
.member-page p { color: var(--obs-paper-muted); }
.content-section,
.resource-grid,
.resource-card { border-color: var(--obs-light-line); }
.content-section h2,
.resource-card h3 { font-family: var(--obs-font); font-size: clamp(1.35rem, 2vw, 1.85rem); text-transform: uppercase; }

/* Accessible signal color and coherent components on technical-paper surfaces */
.standard-content .content-number,
.standard-content .resource-status,
.standard-content .section-index,
.standard-content .content-callout > span,
.standard-content .content-callout .contact-details dt,
.standard-content .content-callout .contact-details a,
.commercial-intro .section-index,
.commercial-services-preview .section-index,
.commercial-services-preview .text-link,
.pricing-popular .section-index,
.pricing-popular .text-link,
.pricing-table-section .section-index,
.member-page .section-index,
.board-results .board-card-kicker,
.board-results .board-card-arrow,
.legal-document-identity a,
.page-home .home-ai-lab .section-index,
.page-home .home-ai-lab .text-link,
.page-home .home-board .section-index,
.page-home .home-board .text-link,
.page-home .home-offers .section-index,
.page-home .home-offers .text-link,
.page-home .domains .section-index,
.page-home .domains .text-link,
.page-home .why .section-index,
.page-home .why .text-link,
.page-home .domains .domain-list span { color: var(--obs-cyan-ink); }

.standard-content .content-callout .contact-details dd { color: var(--obs-paper-ink); }
.standard-content .content-callout .contact-details div { border-color: var(--obs-light-line); }
.board-results .board-card-meta strong { color: #2f6500; }
.pricing-table-section .section-heading p { color: var(--obs-paper-muted); }
.lab-model-card { background-color: var(--obs-paper-white); }

.commercial-services-preview .service-card,
.pricing-popular .service-card {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background: rgba(255, 255, 255, .32);
}
.commercial-services-preview .service-card:hover,
.pricing-popular .service-card:hover {
    border-color: #168eac;
    background: rgba(255, 255, 255, .68);
}
.commercial-services-preview .service-card::before,
.pricing-popular .service-card::before { background: var(--obs-cyan-ink); }
.commercial-services-preview .service-card h3,
.pricing-popular .service-card h3,
.commercial-services-preview .service-meta dd,
.pricing-popular .service-meta dd { color: var(--obs-paper-ink); }
.commercial-services-preview .service-card > p,
.pricing-popular .service-card > p,
.commercial-services-preview .service-meta dt,
.pricing-popular .service-meta dt,
.commercial-services-preview .included-list ul,
.commercial-services-preview .excluded-list ul,
.pricing-popular .included-list ul,
.pricing-popular .excluded-list ul,
.commercial-services-preview .vat-display,
.pricing-popular .vat-display { color: var(--obs-paper-muted); }
.commercial-services-preview .service-meta div,
.pricing-popular .service-meta div { border-color: var(--obs-light-line); }
.commercial-services-preview .scope-badge,
.pricing-popular .scope-badge {
    color: #334f5d;
    border-color: #9eb5bb;
    background: rgba(255, 255, 255, .45);
}
.commercial-services-preview .scope-badge-accent,
.pricing-popular .scope-badge-accent {
    color: var(--obs-paper-white);
    border-color: var(--obs-cyan-ink);
    background: var(--obs-cyan-ink);
}
.commercial-services-preview .service-price,
.pricing-popular .service-price,
.commercial-services-preview .included-list strong,
.commercial-services-preview .excluded-list strong,
.pricing-popular .included-list strong,
.pricing-popular .excluded-list strong { color: var(--obs-cyan-ink); }

.commercial-services-preview .price-disclaimer {
    border-color: #9eb5bb;
    background: rgba(255, 255, 255, .35);
}
.commercial-services-preview .price-disclaimer > span {
    color: var(--obs-cyan-ink);
    border-color: var(--obs-cyan-ink);
}
.commercial-services-preview .price-disclaimer p { color: var(--obs-paper-muted); }
.price-disclaimer { align-items: start; }
.price-disclaimer p { grid-column: 2; }
.offers-cards .content-callout:first-child { margin-top: 0; }

.pricing-table-section .commercial-rate-table {
    border-color: var(--obs-light-line);
    background: var(--obs-light-line);
}
.pricing-table-section .commercial-rate-table div { background: rgba(255, 255, 255, .48); }
.pricing-table-section .commercial-rate-table strong { color: var(--obs-paper-ink); }
.pricing-table-section .commercial-rate-table span { color: var(--obs-cyan-ink); }
.pricing-table-section .commercial-rate-table small { color: var(--obs-paper-muted); }

/* Information marks and line icons share one optical language */
.info-mark svg { width: 16px; height: 16px; stroke-linecap: round; stroke-linejoin: round; }
.pillar-icon svg,
.hygiene-signal svg,
.lang-globe,
.header-account svg,
.to-top svg {
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

/* Paper-guide semantic colors meet AA without changing their meaning */
.guide-body .hygiene-signal svg { stroke: #8a3f00; }
.guide-body .hygiene-signal h3,
.guide-body .hygiene-rule strong,
.guide-body .guide-box-alert h3,
.guide-body .guide-vishing span { color: #8a3f00; }
.guide-body .guide-box-alert .guide-list li::before { background: #8a3f00; }
.guide-body .guide-rules li span { color: #2f6500; }
.guide-body .guide-list li::before { background: #2f6500; }
.guide-body .guide-note { border-color: #2f6500; }
.guide-body .guide-section > h2 span,
.guide-body .guide-daily h3,
.guide-body .guide-signs li > span,
.guide-body .guide-protocol span { color: var(--obs-cyan-ink); }
.guide-body .guide-sources { color: var(--obs-paper-muted); }
.guide-body .guide-panel h2 { color: var(--obs-cyan-soft); }

/* Numeric labels stay legible on the dark mission rail */
.page-home .mission-band .pillar .index { color: #8da1aa; }

.board-card-image-placeholder {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--obs-cyan-soft);
}
.board-card-image-placeholder svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.commercial-categories,
.pricing-controls,
.pricing-subscriptions,
.pricing-category,
.commercial-related,
.process-rail,
.ai-lab-objectives,
.ai-lab-axes,
.ai-lab-workshops {
    color: #f1f3f2;
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .96), rgba(3, 15, 24, .78)),
        url("../img/observatory-map-2026.webp") center / cover;
}
.commercial-category-card,
.service-card,
.commercial-price-row {
    border-radius: 0;
    border-color: var(--obs-line);
    background: rgba(5, 23, 34, .82);
    box-shadow: none;
}
.commercial-category-card::before,
.service-card::before,
.commercial-price-row::before { height: 1px; background: var(--obs-cyan); }

/* Board and account product layer */
.board-search { border-color: var(--obs-line-strong); background: rgba(2, 10, 18, .88); }
.board-tabs { color: #f1f3f2; background: #071923; }
.board-tabs a { min-height: 50px; border-color: var(--obs-line); }
.board-layout { grid-template-columns: 280px minmax(0, 1fr); }
.board-filters {
    border-color: #bac1bd;
    color: var(--obs-paper-ink);
    background: rgba(255, 255, 255, .42);
}
.board-filters h2,
.board-filters label { color: var(--obs-paper-ink); }
.board-filters input,
.board-filters select { color: var(--obs-paper-ink); border-color: var(--obs-light-line); background-color: var(--obs-paper-white); }
.board-list .board-card { border-color: var(--obs-light-line); color: var(--obs-paper-ink); background: rgba(255,255,255,.2); }
.board-list .board-card:hover { border-color: #178eac; background: rgba(255,255,255,.55); }
.board-card-meta { color: var(--obs-paper-muted); }

.auth-page {
    min-height: calc(100dvh - var(--obs-header));
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .99) 0%, rgba(3, 15, 24, .88) 46%, rgba(3, 15, 24, .28) 100%),
        url("../img/observatory-map-2026.webp") center / cover fixed;
}
.auth-shell { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.auth-shell > header { position: sticky; top: calc(var(--obs-header) + 42px); }
.auth-shell > header h1 { color: #f1f3f2; font-size: clamp(3rem, 5vw, 5rem); }
.auth-shell > header p { color: #aebdc3; }
.auth-panel {
    color: var(--obs-paper-ink);
    border-color: var(--obs-light-line);
    background:
        radial-gradient(rgba(17, 38, 48, .1) .55px, transparent .55px) 0 0 / 6px 6px,
        var(--obs-paper);
    box-shadow: 0 30px 90px rgba(0, 7, 12, .32);
}
.auth-panel h2,
.auth-panel h3,
.auth-panel label,
.auth-panel .check span { color: var(--obs-paper-ink); }
.auth-panel p,
.auth-panel small { color: var(--obs-paper-muted); }
.auth-panel input,
.auth-panel select,
.auth-panel textarea {
    min-height: 48px;
    border-color: #aeb7b7;
    color: var(--obs-paper-ink);
    background-color: rgba(255,255,255,.62);
}
.auth-panel textarea { min-height: 130px; }
.auth-links { border-color: var(--obs-light-line); color: #087f9f; }
.account-board-links a { border-color: var(--obs-light-line); color: var(--obs-paper-ink); background: rgba(255,255,255,.35); }
.account-section-title { color: var(--obs-paper-ink); border-color: var(--obs-light-line); }
.security-card { background: rgba(255,255,255,.55); border-color: var(--obs-light-line); }
.security-card p,
.security-card small,
.account-keys-empty,
.webauthn-hint,
.webauthn-backup-hint,
.webauthn-type legend,
.account-keys li small,
.account-sessions li small,
.account-sessions li time { color: var(--obs-paper-muted); }
.account-keys li,
.account-sessions li { border-color: var(--obs-light-line); background: rgba(255,255,255,.45); }
.account-keys li form .button-danger { color: #9a2a2a; border-color: rgba(154, 42, 42, .45); background: rgba(255, 255, 255, .55); }
.account-keys li form .button-danger:hover { color: #fff; border-color: #9a2a2a; background: #9a2a2a; }
.webauthn-type .check input { border-color: var(--obs-paper-muted); }
.webauthn-type .check input:checked { border-color: var(--obs-cyan); background: var(--obs-cyan); }
.webauthn-type .check span { color: var(--obs-paper-ink); }
.webauthn-hint { border-color: var(--obs-cyan); background: rgba(25, 185, 230, .08); }

/* Footer continues the observatory environment */
.site-footer {
    color: #eef2f2;
    border-color: var(--obs-line);
    background:
        linear-gradient(90deg, rgba(2, 10, 18, .99), rgba(2, 10, 18, .82)),
        url("../img/observatory-map-2026.webp") center bottom / cover;
}
.footer-main { grid-template-columns: 1.35fr repeat(4, minmax(140px, .75fr)); }
.footer-main h2 { color: var(--obs-cyan-soft); font-size: .7rem; letter-spacing: .09em; }
.footer-main a { min-height: 30px; color: #b8c6cb; }
.footer-main a:hover { color: var(--obs-cyan-soft); }
.footer-brand { width: 170px !important; }
.footer-bottom { border-color: var(--obs-line); }
.cookie-notice { border-color: var(--obs-line-strong); background: #071923; }
.to-top { border-radius: 0; border-color: var(--obs-line-strong); background: #071923; }

/* Forms, states and accessibility */
.field input,
.field select,
.field textarea { border-radius: 0; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--obs-cyan); box-shadow: 0 0 0 1px var(--obs-cyan); }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline-color: var(--obs-cyan); }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 1; transform: none; }

@media (max-width: 1320px) {
    .brand span { display: none; }
    .site-nav { gap: 10px; }
    .header-account-main span { display: none; }
    .header-account-main { padding-inline: 5px; }
}

@media (max-width: 1120px) {
    :root { --obs-header: 76px; }
    .site-header,
    .header-inner { min-height: var(--obs-header); }
    .menu-toggle { display: block; margin-left: 4px; }
    .site-nav {
        position: fixed;
        top: var(--obs-header);
        left: 0;
        right: 0;
        max-height: calc(100dvh - var(--obs-header));
        display: none;
        align-items: stretch;
        overflow-y: auto;
        padding: 14px var(--obs-gutter) 28px;
        border-bottom: 1px solid var(--obs-line-strong);
        background: rgba(3, 14, 23, .995);
    }
    .site-nav.is-open { display: block; }
    .nav-group { display: block; border-bottom: 1px solid var(--obs-line); }
    .nav-group summary { min-height: 54px; justify-content: space-between; font-size: .9rem; }
    .nav-menu {
        position: static;
        width: 100%;
        padding: 0 0 10px 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .nav-menu a { min-height: 46px; }
    .site-nav .nav-account,
    .site-nav .nav-cta { display: flex; min-height: 48px; margin-top: 12px; }
    .header-tools .header-account { display: inline-flex; }
    .header-report { display: none; }
    .page-home .hero-copy { width: min(720px, 68%); }
    .hero-observatory { display: none; }
    .page-home .mission-band .container { height: auto; grid-template-columns: minmax(0, 1fr); gap: 0; }
    .page-home .mission-band .section-heading { padding-block: 14px; }
    .page-home .mission-band .section-heading,
    .page-home .pillar-grid { width: 100%; min-width: 0; }
    .page-home .pillar-grid { border-top: 1px solid var(--obs-line); }
    .page-home .pillar { min-height: 100px; }
    .home-ai-feature,
    .home-ai-network { grid-column: 1 / -1; }
    .home-ai-feature { min-height: 500px; }
    .home-ai-network { min-height: 390px; }
    .home-ai-directions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-ai-partners { grid-template-columns: minmax(0, 1fr); }
    .home-ai-partners-copy { border-right: 0; border-bottom: 1px solid rgba(17, 38, 48, .2); }
    .page-home .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .auth-shell { grid-template-columns: 1fr; }
    .auth-shell > header { position: static; }
    .footer-main { grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr)); }
    .footer-main > div { min-width: 0; }
}

@media (max-width: 760px) {
    .brand strong { font-size: 1.55rem; }
    .site-header .brand { min-height: 44px; }
    .header-account-main span { display: none; }
    .header-account-main { min-width: 44px; justify-content: center; }
    .lang-switch summary { padding-inline: 6px; }
    .lang-menu a { min-height: 44px; }
    .page-home .hero { min-height: 560px; }
    .page-home .hero-art { background-position: 66% center; opacity: .78; }
    .page-home .hero-art::before { background-position: 66% center; }
    .hero-map-pulse { display: none; }
    .page-home .hero::before { background: linear-gradient(90deg, rgba(2,10,18,.98), rgba(2,10,18,.72)); }
    .page-home .hero-copy { width: 100%; padding-block: 38px 44px; }
    .page-home .hero h1 { max-width: 12ch; font-size: clamp(2.65rem, 12vw, 3.55rem); line-height: .96; }
    .page-home .hero-actions { display: block; }
    .page-home .hero .button { width: 100%; }
    .hero-status { margin: 22px 0 0 2px; }
    .page-home .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-home .pillar { grid-template-columns: auto 30px 1fr; min-height: 112px; padding: 13px 10px; gap: 9px; }
    .page-home .pillar,
    .page-home .pillar > div { min-width: 0; }
    .page-home .pillar h3,
    .page-home .pillar p { overflow-wrap: anywhere; }
    .pillar-icon svg { width: 29px; height: 29px; }
    .page-home .pillar h3 { font-size: .78rem; }
    .page-home .pillar p { font-size: .7rem; }
    .page-home .home-techblog-promo { padding-block: 18px; }
    .page-home .home-techblog-card { min-height: 365px; }
    .page-home .home-techblog-media img { object-position: 68% center; }
    .page-home .home-techblog-shade {
        background:
            linear-gradient(90deg, rgba(2, 10, 18, .96), rgba(2, 12, 21, .7)),
            linear-gradient(0deg, rgba(2, 10, 18, .96) 0%, rgba(2, 10, 18, .72) 58%, rgba(2, 10, 18, .24) 100%);
    }
    .page-home .home-techblog-copy {
        justify-content: flex-end;
        width: 100%;
        padding: 27px 24px 25px;
    }
    .page-home .home-techblog-copy > strong { max-width: 14ch; font-size: clamp(1.85rem, 8.6vw, 2.45rem); }
    .page-home .home-techblog-intro { max-width: 38ch; margin-top: 12px; font-size: .9rem; }
    .page-home .home-techblog-copy small { max-width: 42ch; margin-top: 9px; }
    .page-home .home-techblog-action { margin-top: 16px; }
    .page-home .home-ai-lab { padding-block: 58px 76px; }
    .page-home .home-ai-lab-head { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .page-home .home-ai-lab-head > div { gap: 14px; }
    .page-home .home-ai-lab-head h2 { max-width: 12ch; font-size: clamp(2.65rem, 12vw, 4rem); }
    .page-home .home-ai-lab-head p { padding-left: 18px; font-size: 1rem; }
    .home-ai-stage { display: block; }
    .home-ai-feature,
    .home-ai-network { min-height: 430px; margin-bottom: 12px; }
    .home-ai-network { min-height: 360px; }
    .home-ai-feature-copy,
    .home-ai-network-copy { padding: 24px; }
    .home-ai-feature-copy strong,
    .home-ai-network-copy strong { font-size: clamp(1.6rem, 8vw, 2.3rem); }
    .home-ai-directions {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 1px 1px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }
    .home-ai-directions::-webkit-scrollbar { display: none; }
    .home-ai-direction {
        flex: 0 0 min(310px, calc(100vw - 58px));
        min-height: 250px;
        scroll-snap-align: start;
    }
    .home-ai-partners { margin-top: 12px; }
    .home-ai-partners-copy { padding: 24px; }
    .home-ai-partner-list { grid-template-columns: minmax(0, 1fr); }
    .home-ai-partner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 164px;
        padding: 22px 24px;
    }
    .home-ai-partner + .home-ai-partner { border-top: 1px solid rgba(17, 38, 48, .2); border-left: 0; }
    .home-ai-partner-logo { min-height: 62px; }
    .home-ai-partner-cisco .home-ai-partner-logo img { width: 72px; height: 72px; }
    .home-ai-partner-mikrotik .home-ai-partner-logo img { width: min(170px, 100%); }
    .home-ai-footer { gap: 14px; }
    .page-home .home-ai-lab .home-ai-cta { min-height: 58px; padding-inline: 20px; font-size: .68rem; }
    .page-home .offers-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 1px 1px 12px;
        border-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .page-home .offers-grid::-webkit-scrollbar { display: none; }
    .page-home .offer-card { flex: 0 0 min(310px, calc(100vw - 58px)); scroll-snap-align: start; border: 1px solid var(--obs-light-line); }
    .page-home .hygiene-signals {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .page-home .hygiene-signals::-webkit-scrollbar { display: none; }
    .page-home .hygiene-signal { flex: 0 0 min(310px, calc(100vw - 58px)); padding-inline: 16px; border: 1px solid var(--obs-line); scroll-snap-align: start; }
    .page-home .domain-list { grid-template-columns: 1fr 1fr; }
    .page-home .domain-list li:nth-child(n) {
        min-height: 56px;
        padding: 10px 8px;
        border-left: 0;
        font-size: .84rem;
        line-height: 1.3;
    }
    .page-home .domain-list li:nth-child(even) { padding-left: 12px; border-left: 1px solid var(--obs-light-line); }
    .page-home .domain-list span { flex: 0 0 32px; width: 32px; font-size: .86rem; }
    .page-home .why-lead { gap: 16px; margin-bottom: 18px; }
    .page-home .why-lead > p { padding-left: 14px; font-size: 1rem; line-height: 1.45; }
    .page-home .reason-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        border-top: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .page-home .reason-grid::-webkit-scrollbar { display: none; }
    .page-home .reason {
        flex: 0 0 min(310px, calc(100vw - 58px));
        min-height: 170px;
        padding: 20px;
        border: 1px solid var(--obs-light-line);
        scroll-snap-align: start;
    }
    .page-home .principles-inner { width: 100%; grid-template-columns: minmax(0, 1fr); }
    .page-home .principles h2,
    .page-home .principles ol { width: 100%; min-width: 0; }
    .page-home .principles h2 { min-height: 64px; padding: 16px 0; }
    .page-home .principles ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-home .principles li:nth-child(n) { min-height: 68px; padding: 14px 10px; border-right: 1px solid var(--obs-line); }
    .page-home .principles li { min-width: 0; overflow-wrap: anywhere; }
    .page-home .principles li:nth-child(even) { border-right: 0; }
    .page-home .publication-row { min-height: 70px; padding: 12px 0; }
    .page-home .hygiene-contacts {
        display: flex;
        overflow-x: auto;
        border-bottom: 1px solid var(--obs-line);
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .page-home .hygiene-contacts::-webkit-scrollbar { display: none; }
    .page-home .hygiene-contact {
        flex: 0 0 min(310px, calc(100vw - 58px));
        padding: 14px 16px;
        border-right: 1px solid var(--obs-line);
        border-bottom: 0;
        scroll-snap-align: start;
    }
    .board-layout { grid-template-columns: 1fr; }
    .board-filters { position: static; }
    .board-tabs.container {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        padding-inline: var(--obs-gutter) 0;
    }
    .page-offres .offers-grid { grid-template-columns: minmax(0, 1fr); }
    .page-offres .offers-grid > .offer-card { min-width: 0; }
    .page-offres .offer-card-top { flex-wrap: wrap; align-items: flex-start; }
    .page-offres .offer-price { min-width: 0; flex-wrap: wrap; }
    .page-offres .offer-price strong { max-width: 100%; white-space: normal; overflow-wrap: anywhere; }
    .resource-heading {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: baseline;
        gap: 12px;
    }
    .resource-heading h2 { min-width: 0; overflow-wrap: anywhere; }
    .page-hero h1,
    .standard-content .content-section h2 {
        overflow-wrap: anywhere;
        hyphens: manual; /* pas de cesure automatique dans les titres : elle coupait les intitules en capitales (RE-/CONNAITRE) */
        text-wrap: wrap;
    }
    .standard-content .content-section,
    .standard-content .content-section:not(:has(ul)) {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
    .standard-content .content-section > * { min-width: 0; }
    .breadcrumbs a,
    .board-back,
    .board-card h3 a,
    .contact-details a,
    .legal-document-identity a,
    .footer-main a,
    .text-link,
    .strip-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }
    .breadcrumbs a,
    .board-back,
    .contact-details a,
    .legal-document-identity a,
    .footer-main a { min-width: 44px; }
    .pagination { flex-wrap: wrap; }
    .pagination a { min-width: 44px; }
    .check a { display: inline-flex; align-items: center; min-height: 44px; }
    .pricing-filter button { min-height: 44px; }
    .pricing-anchor-nav a { display: inline-flex; align-items: center; min-height: 44px; }
    .carousel-controls button { width: 44px; height: 44px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .page-home .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-home .pillar { min-height: 118px; }
    .footer-main { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .hero-map-sweep,
    .hero-map-pulse { display: none !important; }
}

/* Support portal CTA — amber, deliberately outside the cyan signal language:
   cyan means an action on this site, this one hands the visitor to the client
   portal. Contrast against the navy header is 8.6:1. */
/* Scoped to the header so it outranks the responsive overrides that colour the
   old CTA inside media queries. */
.site-header .button-support,
.site-nav .button-support {
    background: #f0932b;
    color: #1a1205;
    border-color: #f0932b;
}
.site-header .button-support:hover,
.site-header .button-support:focus-visible,
.site-nav .button-support:hover,
.site-nav .button-support:focus-visible {
    background: #ffa940;
    border-color: #ffa940;
    color: #1a1205;
}

/* Home banner — anonymous cost estimator on the client portal.
   Navy band so the amber call to action carries, and the amber is the same one
   the header uses for the portal: one colour, one destination. */
.home-estimate {
    background:
        linear-gradient(90deg, rgba(3, 15, 24, .97), rgba(6, 25, 38, .93)),
        var(--obs-ink, #06131d);
    border-block: 1px solid rgba(155, 184, 197, .18);
    color: var(--text);
}
.home-estimate-inner {
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 5vw, 72px); align-items: center;
    padding-block: clamp(34px, 5vw, 62px);
}
.home-estimate-kicker {
    display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .11em;
    text-transform: uppercase; color: #f0932b;
}
.home-estimate-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(1.7rem, 2.9vw, 2.5rem); line-height: 1.08; letter-spacing: -.025em;
}
.home-estimate-copy p { margin: 0; max-width: 62ch; color: #b9c7ce; }
.home-estimate-points {
    list-style: none; margin: 20px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.home-estimate-points li {
    position: relative; padding-left: 18px; font-size: .86rem; color: #9bacb5;
}
.home-estimate-points li::before {
    content: ""; position: absolute; left: 0; top: .62em;
    width: 8px; height: 1px; background: #f0932b;
}
.home-estimate-action { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.home-estimate-note { margin: 0; font-size: .74rem; color: #7c8f99; max-width: 30ch; }

.button-estimate {
    background: #f0932b; border-color: #f0932b; color: #1a1205;
    font-size: .82rem; padding-inline: 30px;
}
.button-estimate:hover,
.button-estimate:focus-visible { background: #ffa940; border-color: #ffa940; color: #1a1205; }

@media (max-width: 860px) {
    .home-estimate-inner { grid-template-columns: 1fr; }
    .home-estimate-action { width: 100%; }
    .button-estimate { width: 100%; justify-content: center; }
}

/* ---------- Anonymous cost estimator ---------- */

/* The hero uses the site's own .page-hero-inner padding; it only needs room
   for a lead that runs to three lines. */
.estimation-hero .page-hero-inner p { max-width: 62ch; }
.estimation { padding-block: clamp(30px, 4vw, 56px) clamp(48px, 7vw, 96px); }
.estimation-grid {
    display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px); align-items: start;
}
.estimation-aside h2 { font-size: 1.05rem; margin: 0 0 14px; }
.estimation-steps { margin: 0; padding-left: 20px; color: var(--muted); font-size: .9rem; }
.estimation-steps li { margin-bottom: 10px; }
.estimation-points { list-style: none; margin: 24px 0 0; padding: 0; }
.estimation-points li {
    position: relative; padding: 12px 0 12px 18px;
    border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem;
}
.estimation-points li::before {
    content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 1px; background: #f0932b;
}

.estimation-panel { background: var(--surface); border: 1px solid var(--line); padding: clamp(22px, 3vw, 34px); }
.estimation-field-label { display: block; font-weight: 600; margin-bottom: 8px; }
.estimation-panel textarea {
    width: 100%; min-height: 190px; padding: 13px 15px; resize: vertical;
    background: var(--bg-deep); color: var(--text);
    border: 1px solid var(--line); border-radius: 0; font: inherit; line-height: 1.6;
}
.estimation-panel textarea:focus { outline: 2px solid var(--cyan); border-color: var(--cyan); }
.estimation-note { margin: 10px 0 0; color: var(--muted); font-size: .82rem; }
.estimation-panel .button { margin-top: 18px; }
.estimation-error {
    margin: 0 0 18px; padding: 12px 15px;
    border: 1px solid rgba(255, 179, 106, .5); border-left: 3px solid var(--danger);
    background: rgba(255, 179, 106, .1); color: #ffd7ae; font-size: .9rem;
}

/* Off-screen rather than hidden, so a bot reading the CSS still fills it. */
.estimation-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.estimation-pending { display: flex; align-items: center; gap: 16px; }
.estimation-pending-title { margin: 0; font-weight: 600; }
.estimation-pulse {
    flex: 0 0 auto; width: 12px; height: 12px; background: var(--cyan);
    animation: estimation-pulse 1.4s ease-in-out infinite;
}
@keyframes estimation-pulse { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

.estimation-label {
    display: block; font-size: .66rem; font-weight: 700; letter-spacing: .11em;
    text-transform: uppercase; color: var(--muted);
}
.estimation-summary { margin: 10px 0 22px; font-size: 1.02rem; line-height: 1.6; }
.estimation-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.estimation-table td { padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.estimation-qty { text-align: right; white-space: nowrap; color: var(--muted); padding-inline: 16px !important; }
.estimation-amount { text-align: right; white-space: nowrap; font-weight: 600; }

.estimation-range { margin-top: 24px; padding: 18px 20px; background: var(--bg-deep); border: 1px solid var(--line); }
.estimation-range-value {
    margin: 6px 0 8px; font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 2rem; line-height: 1;
}
.estimation-range-value span { color: var(--muted); margin-inline: 6px; }
.estimation-subhead { margin: 26px 0 8px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.estimation-list { margin: 0; padding-left: 20px; color: var(--muted); font-size: .88rem; }
.estimation-list li { margin-bottom: 6px; }

.estimation-disclaimer {
    margin-top: 24px; padding: 14px 16px;
    background: rgba(240, 147, 43, .1);
    border: 1px solid rgba(240, 147, 43, .4); border-left: 3px solid #f0932b;
    font-size: .88rem; color: #f6d5ac;
}
.estimation-disclaimer strong { display: block; margin-bottom: 4px; color: #ffc987; }
.estimation-disclaimer p { margin: 0; }
.estimation-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

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