:root {
    --ink: #071426;
    --ink-2: #10233d;
    --paper: #f4f7f9;
    --white: #fff;
    --muted: #5d6b7c;
    --line: #d9e1e8;
    --cyan: #29d5e5;
    --blue: #1378ff;
    --lime: #b9ef43;
    --radius: 1.25rem;
    --shadow: 0 22px 60px rgba(7, 20, 38, .12);
    --site-header-height: 86px;
    --article-nav-height: 58px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: clamp(4.75rem, 8vw, 8rem) 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 100;
    padding: .65rem 1rem;
    border-radius: .5rem;
    background: var(--lime);
    color: var(--ink);
    transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    color: var(--white);
}
.site-header.is-stuck {
    position: fixed;
    background: rgba(7, 20, 38, .94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: var(--site-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand img { width: 190px; height: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 1.55rem; }
.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 650;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a.is-nav-active:not(.nav-cta):not(.nav-support), .main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-support), .resource-detail-nav a.is-nav-active {
    color: var(--white);
}
.main-nav a.is-nav-active:not(.nav-cta):not(.nav-support)::after, .main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-support)::after, .resource-detail-nav a.is-nav-active::after {
    position: absolute;
    right: .1rem;
    bottom: -.55rem;
    left: .1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    content: "";
    opacity: .82;
}
.main-nav .nav-cta.is-nav-active, .main-nav .nav-cta[aria-current="page"] {
    border-color: rgba(48, 211, 220, .8);
    background: rgba(48, 211, 220, .1);
    box-shadow: inset 0 -2px 0 rgba(48, 211, 220, .72);
}
.main-nav .nav-cta {
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    color: var(--white);
}
.main-nav .nav-support {
    padding: .65rem .9rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: var(--white);
    background: #a82339;
}
.main-nav .nav-support:hover, .main-nav .nav-support:focus-visible, .main-nav .nav-support.is-nav-active, .main-nav .nav-support[aria-current="page"] {
    color: var(--white);
    background: #c12a45;
    box-shadow: 0 0 0 3px rgba(193,42,69,.18);
}
.nav-toggle { display: none; }

.hero {
    position: relative;
    min-height: min(900px, 100vh);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 9rem 0 6rem;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 42%, rgba(19, 120, 255, .32), transparent 33%),
        radial-gradient(circle at 20% 90%, rgba(41, 213, 229, .13), transparent 30%),
        linear-gradient(135deg, #06101f 0%, #0a1c34 54%, #092a43 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(6,16,31,.98) 0%, rgba(6,16,31,.9) 38%, rgba(6,16,31,.38) 70%, rgba(6,16,31,.2) 100%);
}
.hero-visual { position: absolute; inset: 0; z-index: 0; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 380px;
    height: 380px;
    top: 22%;
    right: -170px;
    border: 1px solid rgba(41, 213, 229, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(41, 213, 229, .025), 0 0 0 140px rgba(41, 213, 229, .02);
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .08;
    background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, black 22%, black 75%, transparent);
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}
.eyebrow {
    margin: 0 0 1rem;
    color: var(--cyan);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow.dark { color: #146a79; }
.eyebrow.accent { color: var(--lime); }
.hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(2.55rem, 5.4vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -.052em;
}
.hero-lead {
    max-width: 670px;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, .69);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.25rem;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 12px 30px rgba(185, 239, 67, .15); }
.button-ghost { border: 1px solid rgba(255, 255, 255, .28); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.section-action { margin-top: 2rem; }
.hero-panel {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
}
.panel-label { margin: 0 0 1.25rem; color: rgba(255, 255, 255, .55); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-path { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.hero-path li { position: relative; display: grid; grid-template-columns: 2.4rem 1fr; padding: .9rem 0; }
.hero-path li + li { border-top: 1px solid rgba(255, 255, 255, .1); }
.hero-path span { grid-row: 1 / 3; color: var(--cyan); font-size: .73rem; font-weight: 800; }
.hero-path strong { font-size: 1.02rem; }
.hero-path small { color: rgba(255, 255, 255, .56); }

.section-heading { max-width: 790px; margin-bottom: 2.75rem; }
.section-heading h2, .split-heading h2, .resource-intro h2, .cta-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.section-heading > p:last-child { max-width: 670px; color: var(--muted); font-size: 1.08rem; }
.row-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .7fr; gap: 4rem; align-items: end; }
.row-heading > p:last-child { margin: 0; }

.journey { background: var(--white); }
.journey-builder {
    padding: clamp(1.2rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + .5rem);
    background: #f8fafb;
    box-shadow: var(--shadow);
}
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
fieldset + fieldset { margin-top: 2.1rem; }
legend { margin-bottom: 1rem; font-weight: 850; }
.choice-grid { display: grid; gap: .7rem; }
.profile-grid { grid-template-columns: repeat(4, 1fr); }
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.choice {
    min-height: 105px;
    padding: 1rem;
    text-align: left;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.choice:hover, .choice:focus-visible { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(7,20,38,.08); }
.choice.is-selected { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(19,120,255,.14); background: #f4f8ff; }
.choice strong, .choice span { display: block; }
.choice span { margin-top: .25rem; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.choice.compact { min-height: 62px; font-size: .86rem; font-weight: 750; text-align: center; }
.journey-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1rem;
    color: var(--white);
    background: var(--ink);
}
.journey-result span { display: block; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.journey-result strong { display: block; margin-top: .25rem; font-size: 1.2rem; }
.journey-result p { margin: .25rem 0 0; color: rgba(255, 255, 255, .6); }
.journey-result .is-disabled { opacity: .45; pointer-events: none; }

.problem-section { color: var(--white); background: var(--ink); }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(3rem, 10vw, 9rem); }
.question-list { border-top: 1px solid rgba(255, 255, 255, .2); }
.question-list p { position: relative; margin: 0; padding: 1.2rem 2rem 1.2rem 0; border-bottom: 1px solid rgba(255, 255, 255, .13); font-size: 1.04rem; }
.question-list p::after { content: "?"; position: absolute; right: 0; color: var(--lime); font-weight: 900; }

.knowledge { background: var(--paper); }
.card-grid { display: grid; gap: 1rem; }
.knowledge-grid { grid-template-columns: repeat(3, 1fr); }
.knowledge-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}
.knowledge-card.is-available { color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.knowledge-card.is-available:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow); }
.card-kicker { color: #146a79; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.knowledge-card h3 { margin: auto 0 .6rem; font-size: 1.55rem; line-height: 1.2; }
.knowledge-card p { margin: 0; color: var(--muted); }
.knowledge-card small { margin-top: 1.5rem; padding-top: .8rem; border-top: 1px solid var(--line); color: #778493; }
.editorial-feature { position: relative; margin: 0 0 2.5rem; overflow: hidden; border-radius: calc(var(--radius) + .25rem); background: var(--ink); box-shadow: var(--shadow); }
.editorial-feature img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.editorial-feature::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,13,24,.88)); pointer-events: none; }
.editorial-feature figcaption { position: absolute; right: clamp(1.2rem,4vw,2.5rem); bottom: clamp(1.2rem,4vw,2.3rem); left: clamp(1.2rem,4vw,2.5rem); z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; color: var(--white); }
.editorial-feature figcaption strong { max-width: 45%; font-size: clamp(1.25rem,2.4vw,2rem); line-height: 1.08; }
.editorial-feature figcaption span { max-width: 520px; color: rgba(255,255,255,.76); font-size: .86rem; text-align: right; }
.editorial-feature-implementation img { object-position: center 46%; }

.resources { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.resources-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 10vw, 8rem); align-items: center; }
.resource-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, .65); }
.status-pill { display: inline-flex; margin-top: 1rem; padding: .45rem .75rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--cyan); font-size: .75rem; font-weight: 700; }
.resource-list article { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.resource-list article > span { color: var(--cyan); font-size: .72rem; font-weight: 800; }
.resource-list strong { font-size: 1.15rem; }
.resource-list p { margin: .15rem 0 0; color: rgba(255, 255, 255, .58); }

.method { background: var(--white); }
.method-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-list li { min-height: 240px; padding: 1.5rem 1.25rem; border-right: 1px solid var(--line); }
.method-list li:last-child { border-right: 0; }
.method-list span { color: #147080; font-size: .72rem; font-weight: 850; }
.method-list h3 { margin: 4.2rem 0 .6rem; font-size: 1.15rem; }
.method-list p { margin: 0; color: var(--muted); font-size: .87rem; }

.solutions { background: var(--paper); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.solution-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--white);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.solution-card h3 { margin: 0 0 .5rem; font-size: 1.3rem; }
.solution-card p { margin: 0; color: var(--muted); }
.solution-card span { margin-top: auto; color: #0a6e82; font-size: .8rem; font-weight: 800; }

.cta-section { padding: clamp(4rem, 8vw, 7rem) 0; color: var(--white); background: var(--blue); }
.cta-layout { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-layout > div { max-width: 760px; }
.cta-section .eyebrow { color: #d9ff81; }
.cta-section p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.site-footer { padding: 3rem 0; color: rgba(255,255,255,.62); background: #050d18; }
.footer-layout { display: flex; justify-content: space-between; gap: 3rem; }
.site-footer img { filter: brightness(0) invert(1); }
.site-footer p { margin: .7rem 0 0; font-size: .86rem; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: .25rem; font-size: .73rem; }
.footer-legal { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: .35rem 1.4rem; align-content: center; font-size: .76rem; }
.footer-legal a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-legal a:hover,.footer-legal a:focus-visible { color: var(--white); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-inner > div:nth-child(2) { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-inner a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-inner a:hover { color: var(--white); }
.footer-main { display: grid; grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(125px, .7fr)); gap: clamp(1.5rem, 3vw, 3.5rem); padding-block: 1rem 2.5rem; }
.footer-brand p { max-width: 290px; color: rgba(255,255,255,.76); }
.footer-brand address { display: grid; gap: .2rem; margin-top: 1.2rem; color: rgba(255,255,255,.58); font-size: .8rem; font-style: normal; }
.footer-brand address a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-phone{display:grid;gap:.05rem;margin-top:.35rem}.footer-phone small{color:rgba(255,255,255,.48);font-size:.68rem;line-height:1.35}
.footer-social { margin-top: 1rem; }
.footer-social a { color: #cde682; font-size: .78rem; text-decoration: none; }
.footer-column { display: flex; flex-direction: column; gap: .5rem; }
.footer-column strong { margin-bottom: .45rem; color: var(--white); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.66); font-size: .79rem; text-decoration: none; }
.footer-column a:hover,.footer-column a:focus-visible,.footer-brand address a:hover { color: var(--white); }
.footer-bottom { margin: 0 -0px -3rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.1); background: #030912; }
.footer-bottom .shell { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1.4rem; color: rgba(255,255,255,.48); font-size: .7rem; }
.footer-bottom button { padding: 0; border: 0; color: rgba(255,255,255,.72); background: none; cursor: pointer; text-decoration: underline; text-underline-offset: .2rem; }

.knowledge-header { position: absolute; }
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 10.5rem 0 6rem;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 30%, rgba(19, 120, 255, .3), transparent 30%),
        linear-gradient(135deg, #06101f, #0a2843);
}
.inner-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,16,31,.98), rgba(6,16,31,.82) 48%, rgba(6,16,31,.28)); }
.inner-hero-visual { position: absolute; inset: 0; z-index: 0; }
.inner-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.newsroom-index-hero .inner-hero-visual img { object-position: center; }
.inner-hero .hero-grid { z-index: 1; }
.inner-hero-copy { position: relative; z-index: 2; max-width: 1000px; }
.inner-hero h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 7vw, 6rem); line-height: 1; letter-spacing: -.055em; }
.inner-hero-copy > p:last-child { max-width: 720px; margin: 1.5rem 0 0; color: rgba(255,255,255,.68); font-size: 1.18rem; }
.breadcrumb { display: flex; gap: .65rem; margin-bottom: 3rem; color: rgba(255,255,255,.5); font-size: .76rem; }
.breadcrumb a { color: var(--cyan); text-decoration: none; }

.section-muted { background: #eaf0f4; }
.dashboard-heading { max-width: 760px; margin-bottom: 2.5rem; }
.dashboard-heading h2 { margin: .2rem 0 .75rem; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -.04em; }
.dashboard-heading > p:last-child { color: var(--muted); }
.newsroom-controls { grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr); margin-bottom: 1rem; }
.newsroom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.news-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(7,20,38,.05);
}
.news-card-cover { display:block; width:auto; height:clamp(118px, 11vw, 154px); margin:-1.5rem -1.5rem 1.2rem; overflow:hidden; border-radius:inherit; border-bottom-right-radius:0; border-bottom-left-radius:0; }
.news-card-cover img { width:100%; height:100%; aspect-ratio:16/9; display:block; object-fit:cover; transition:transform .35s ease; }
.news-card-cover:hover img { transform:scale(1.025); }
.news-card > span { color: #08758b; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.news-card h2 { margin: 1.2rem 0 .8rem; font-size: 1.45rem; line-height: 1.2; }
.news-card h2 a { text-decoration: none; }
.news-card h2 a:hover { color: var(--blue); }
.news-card p { margin: 0; color: var(--muted); }
.news-card small { margin-top: auto; padding-top: 1.5rem; color: var(--muted); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.principle-card { padding: 1.4rem; border-top: 3px solid var(--cyan); background: var(--white); }
.principle-card p { margin: 0; }
.newsroom-article-hero h1 { max-width: 1000px; font-size: clamp(2.7rem, 6vw, 5.6rem); }
.article-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(240px, .8fr); gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(4rem, 8vw, 8rem); }
.article-body { max-width: 780px; }
.article-body section + section { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.article-body h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; letter-spacing: -.03em; }
.article-body p, .article-body li { color: #26384c; font-size: 1.05rem; }
.article-body li + li { margin-top: .55rem; }
.source-note { margin-top: 4rem; padding: 1.5rem; border-left: 4px solid var(--cyan); background: var(--white); }
.source-note p { font-size: .92rem; }
.source-note a { color: var(--blue); font-size: .85rem; font-weight: 750; }
.article-related { align-self: start; position: sticky; top: calc(var(--site-header-height) + 2rem); padding: 1.4rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.article-related h2 { margin: .2rem 0 1.2rem; font-size: 1.25rem; }
.article-related a { display: block; padding: .8rem 0; border-top: 1px solid var(--line); color: var(--blue); font-size: .88rem; font-weight: 750; text-decoration: none; }
.archive-controls { grid-template-columns: minmax(0, 1fr); }
.archive-collapsible { border:1px solid var(--line); border-radius:1rem; background:var(--white); overflow:hidden; }
.archive-collapsible > summary { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.1rem 1.3rem; cursor:pointer; list-style:none; }
.archive-collapsible > summary::-webkit-details-marker { display:none; }
.archive-collapsible > summary strong,.archive-collapsible > summary small { display:block; }.archive-collapsible > summary strong { font-size:.95rem; }.archive-collapsible > summary small { margin-top:.2rem; color:var(--muted); font-size:.72rem; }
.archive-collapsible > summary em { width:.7rem; height:.7rem; display:block; border-right:2px solid var(--blue); border-bottom:2px solid var(--blue); transform:rotate(45deg); transition:transform .2s ease; }
.archive-collapsible[open] > summary em { transform:rotate(225deg); }
.archive-collapsible-content { padding:1.2rem 1.3rem 1.4rem; border-top:1px solid var(--line); }
.archive-list { border-top: 1px solid var(--line); }
.archive-list article { display: grid; grid-template-columns: 48px 82px minmax(0,1fr) 100px; gap: .85rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.archive-cover { width:48px !important; height:27px !important; max-width:48px; display:block; overflow:hidden; border-radius:.3rem; background:#dfe8ee; }
.archive-cover img { width:48px !important; height:27px !important; max-width:48px; aspect-ratio:16/9; display:block; object-fit:cover; }
.archive-list article > span { color: #08758b; font-size: .7rem; font-weight: 850; }
.archive-list h3 { margin: 0 0 .3rem; font-size: 1.05rem; }.archive-list p { margin: 0; color: var(--muted); font-size: .85rem; }
.archive-list h3 a { text-decoration: none; }.archive-list h3 a:hover { color: var(--blue); }
.archive-list time { color: var(--muted); font-size: .75rem; text-align: right; }
.archive-warning { margin-bottom: 2.5rem; padding: 1.2rem 1.4rem; border: 1px solid #e5c76b; border-radius: .8rem; background: #fff8dc; }
.archive-warning p { margin: .35rem 0 0; font-size: .9rem; }
.article-body > h2 { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-body blockquote { margin: 1.5rem 0; padding: 1rem 1.3rem; border-left: 4px solid var(--cyan); background: var(--white); color: #26384c; }
.article-cover { margin-top:3rem; margin-bottom:3rem; }
.article-cover img { width:100%; max-height:680px; display:block; border-radius:1.2rem; object-fit:cover; box-shadow:0 24px 65px rgba(7,20,38,.14); }
.article-inline-feature { margin:2.4rem 0 2.8rem; }
.article-inline-feature img { width:100%; height:auto; display:block; object-fit:contain; border-radius:1rem; box-shadow:0 20px 50px rgba(7,20,38,.16); }
.article-inline-feature figcaption { margin-top:.7rem; color:var(--muted); font-size:.82rem; line-height:1.5; }
.archive-single-item { margin-block: .35rem; }
.knowledge-principles { color: var(--white); background: #0b3551; }
.knowledge-principles ul { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; }
.knowledge-principles li { display: grid; align-content: start; gap: .4rem; min-height: 150px; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.12); text-align: left; }
.knowledge-principles strong { color: var(--white); font-size: .78rem; line-height: 1.35; }
.knowledge-principles span { color: rgba(255,255,255,.62); font-size: .69rem; font-weight: 500; line-height: 1.55; }
.knowledge-principles li:last-child { border-right: 0; }
.topic-section { background: var(--paper); }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.topic-card { position: relative; min-height: 360px; display: block; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); isolation: isolate; }
.topic-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,20,38,.12), rgba(7,20,38,.92)); transition: opacity .38s ease; }
.topic-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .42s ease, transform .65s ease; }
.topic-card-content { position: relative; z-index: 2; min-height: 360px; display: flex; flex-direction: column; padding: 1.75rem; transition: color .35s ease; }
.topic-card.is-available { color: inherit; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .35s ease; }
.topic-card.is-available:hover,.topic-card.is-available:focus-visible { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow); outline: none; }
.topic-topline { display: flex; justify-content: space-between; color: #0d7183; font-size: .72rem; font-weight: 800; transition: color .35s ease; }
.topic-topline small { padding: .25rem .55rem; border-radius: 999px; color: var(--muted); background: rgba(244,247,249,.92); }
.topic-card .card-kicker { margin-top: auto; margin-bottom: .5rem; }
.topic-card h2 { margin: 0; font-size: 1.65rem; line-height: 1.15; }
.topic-description { margin: .7rem 0 0; color: var(--muted); transition: color .35s ease, opacity .35s ease, transform .35s ease; }
.topic-state { margin-top: 1.3rem; padding-top: .8rem; border-top: 1px solid currentColor; color: #7b8794; font-size: .73rem; transition: color .35s ease; }
.topic-card.image-first { color: var(--white); }
.topic-card.image-first .topic-topline,.topic-card.image-first .card-kicker,.topic-card.image-first .topic-state { color: rgba(255,255,255,.82); }
.topic-card.image-first .topic-description { color: rgba(255,255,255,.8); opacity: 0; transform: translateY(12px); }
.topic-card.image-first:is(:hover,:focus-visible) { color: var(--ink); background: var(--white); }
.topic-card.image-first:is(:hover,:focus-visible)::before { opacity: 0; }
.topic-card.image-first:is(:hover,:focus-visible) .topic-card-image { opacity: .08; transform: scale(1.04); }
.topic-card.image-first:is(:hover,:focus-visible) .topic-topline,.topic-card.image-first:is(:hover,:focus-visible) .card-kicker { color: #0d7183; }
.topic-card.image-first:is(:hover,:focus-visible) .topic-state { color: #7b8794; }
.topic-card.image-first:is(:hover,:focus-visible) .topic-description { color: var(--muted); opacity: 1; transform: none; }
.topic-card.text-first::before,.topic-card.text-first .topic-card-image { opacity: 0; }
.topic-card.text-first:is(:hover,:focus-visible) { color: var(--white); }
.topic-card.text-first:is(:hover,:focus-visible)::before { opacity: 1; }
.topic-card.text-first:is(:hover,:focus-visible) .topic-card-image { opacity: 1; transform: scale(1.04); }
.topic-card.text-first:is(:hover,:focus-visible) .topic-topline,.topic-card.text-first:is(:hover,:focus-visible) .card-kicker,.topic-card.text-first:is(:hover,:focus-visible) .topic-state { color: rgba(255,255,255,.82); }
.topic-card.text-first:is(:hover,:focus-visible) .topic-description { color: rgba(255,255,255,.8); }
.journey-links { color: var(--white); background: var(--ink); }
.journey-links .section-heading h2 { color: var(--white); }
.need-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.need-list a { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.4rem 0; color: inherit; border-bottom: 1px solid rgba(255,255,255,.15); text-decoration: none; transition: color .2s ease, background-color .2s ease; }
.need-list a:nth-child(odd) { padding-right: 2rem; border-right: 1px solid rgba(255,255,255,.15); }
.need-list a:nth-child(even) { padding-left: 2rem; }
.need-list a:hover,.need-list a:focus-visible { color: var(--lime); background: rgba(255,255,255,.025); }
.need-list h3 { margin: 0; font-size: 1rem; }
.need-list span { color: var(--cyan); font-size: .73rem; text-align: right; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 1rem; color: var(--white); background: radial-gradient(circle at 70% 20%, #123e64, transparent 35%), var(--ink); }
.error-page main { width: min(720px, 100%); }
.error-card { padding: clamp(2rem, 6vw, 4rem); border: 1px solid rgba(255,255,255,.15); border-radius: 1.5rem; background: rgba(255,255,255,.05); box-shadow: var(--shadow); }
.error-card .brand { display: inline-block; margin-bottom: 4rem; }
.error-card .brand img { filter: brightness(0) invert(1); }
.error-card h1 { margin: 0; font-size: clamp(2.4rem, 7vw, 4.8rem); line-height: 1; letter-spacing: -.05em; }
.error-card > p:not(.eyebrow) { max-width: 550px; color: rgba(255,255,255,.65); }
.legal-hero h1 { max-width: 960px; font-size: clamp(2.8rem, 6.6vw, 5.8rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; margin-top: 2rem; color: rgba(255,255,255,.52); font-size: .74rem; }
.article-meta span::before { content: "✓"; margin-right: .4rem; color: var(--cyan); }
.article-nav { position: sticky; top: var(--site-header-height); z-index: 15; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 8px 22px rgba(7,20,38,.06); backdrop-filter: blur(14px); }
.article-nav .shell { min-height: var(--article-nav-height); display: flex; align-items: center; gap: 1.35rem; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
.article-nav .shell::-webkit-scrollbar { display: none; }
.article-nav span { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.article-nav a { padding: 1.05rem 0; color: var(--ink); border-bottom: 2px solid transparent; font-size: .76rem; font-weight: 750; text-decoration: none; white-space: nowrap; scroll-snap-align: start; }
.article-nav a:hover { color: var(--blue); }
.article-nav a.is-active, .article-nav a[aria-current="location"] { color: var(--blue); border-bottom-color: var(--blue); }
main :where(section, article, details)[id] {scroll-margin-top: calc(var(--site-header-height) + 3px);}
.has-article-nav main :where(section, article, details)[id] {scroll-margin-top: calc(var(--site-header-height) + var(--article-nav-height) + 3px);}
.legal-intro { background: var(--white); }
.legal-layer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.legal-layer-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.legal-layer-grid article > span { color: #0d7183; font-size: .72rem; font-weight: 850; }
.legal-layer-grid .card-kicker { margin: auto 0 .4rem; }
.legal-layer-grid h3 { margin: 0; font-size: 1.45rem; line-height: 1.18; }
.legal-layer-grid article > p:last-child { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.plain-language { display: grid; grid-template-columns: .25fr 1fr; gap: 2rem; margin-top: 1rem; padding: 1.4rem 1.6rem; border-radius: 1rem; color: var(--white); background: var(--ink); }
.plain-language strong { color: var(--cyan); }
.plain-language p { margin: 0; }
.legal-timeline-section { color: var(--white); background: var(--ink); }
.legal-timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.legal-timeline li { display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.legal-timeline time { color: var(--lime); font-size: .78rem; font-weight: 850; }
.legal-timeline strong { font-size: 1.05rem; }
.legal-timeline p { margin: .15rem 0 0; color: rgba(255,255,255,.56); font-size: .87rem; }
.audience-section { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.audience-grid article { padding: 1.6rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.audience-grid h3 { margin: 0 0 .6rem; }
.audience-grid p { margin: 0; color: var(--muted); }
.scope-warning { margin-top: 1rem; padding: 1.5rem; border-left: 4px solid var(--blue); background: #eaf2ff; }
.scope-warning strong { font-size: 1.05rem; }
.scope-warning p { margin: .25rem 0 0; color: #47596d; }
.obligation-section { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.obligation-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.obligation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.obligation-grid article { min-height: 220px; padding: 1.35rem; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.obligation-grid span { color: var(--cyan); font-size: .7rem; font-weight: 850; }
.obligation-grid h3 { margin: 3rem 0 .5rem; font-size: 1rem; }
.obligation-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: .82rem; }
.first-steps { background: var(--white); }
.first-steps ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.first-steps li { display: grid; grid-template-columns: 5rem 1fr; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.first-steps li > span { color: #0d7183; font-size: .75rem; font-weight: 850; }
.first-steps h3 { margin: 0; font-size: 1.15rem; }
.first-steps p { max-width: 800px; margin: .3rem 0 0; color: var(--muted); }
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .5fr 1fr; gap: clamp(3rem, 10vw, 8rem); }
.faq-layout h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -.04em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.15rem 2rem 1.15rem 0; font-weight: 800; cursor: pointer; }
.faq-list details p { margin: 0 0 1.25rem; color: var(--muted); }
.source-section { background: var(--white); }
.source-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.source-grid a { display: flex; min-height: 150px; flex-direction: column; padding: 1.3rem; border: 1px solid var(--line); border-radius: .9rem; text-decoration: none; }
.source-grid a:hover { border-color: var(--blue); }
.source-grid span { color: #0d7183; font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.source-grid strong { margin-top: .35rem; }
.source-grid small { margin-top: auto; color: var(--muted); }
.legal-notice { margin: 1.5rem 0 0; padding: 1rem 1.2rem; border-radius: .7rem; color: var(--muted); background: var(--paper); font-size: .8rem; }
.narrow-shell { max-width: 900px; }
.decree-overview { background: var(--white); }
.fact-strip { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0 0 1rem; border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; }
.fact-strip div { min-height: 120px; padding: 1.2rem; border-right: 1px solid var(--line); background: var(--paper); }
.fact-strip div:last-child { border-right: 0; }
.fact-strip dt { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.fact-strip dd { margin: 1.6rem 0 0; font-size: 1rem; font-weight: 850; line-height: 1.2; }
.critical-section { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.critical-section .section-heading > p:last-child { color: rgba(255,255,255,.6); }
.critical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.critical-grid article { min-height: 285px; display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.04); }
.critical-grid article > span { color: var(--cyan); font-size: .72rem; font-weight: 850; }
.critical-grid h3 { margin: auto 0 .5rem; font-size: 1.25rem; }
.critical-grid p { margin: 0; color: rgba(255,255,255,.67); font-size: .88rem; }
.critical-grid small { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); }
.incident-section { color: var(--white); background: var(--ink); }
.incident-section .section-copy { color: rgba(255,255,255,.6); }
.incident-flow { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.incident-flow li { display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.incident-flow li > span { color: var(--lime); font-size: .8rem; font-weight: 850; }
.incident-flow strong { color: var(--cyan); font-size: .72rem; }
.incident-flow p { margin: .2rem 0 0; color: rgba(255,255,255,.63); font-size: .85rem; }
.act-section { background: var(--paper); }
.article-title-list { margin: 0; padding: 0; list-style: none; counter-reset: act; border-top: 1px solid var(--line); }
.article-title-list li { padding: 1rem .2rem; border-bottom: 1px solid var(--line); font-weight: 750; }
.chapter-section { background: var(--white); }
.chapter-list { border-top: 1px solid var(--line); }
.chapter-list details { border-bottom: 1px solid var(--line); }
.chapter-list summary { display: grid; grid-template-columns: 8rem 1fr auto; align-items: center; gap: 1.5rem; padding: 1.2rem 0; cursor: pointer; }
.chapter-list summary span { color: #0d7183; font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.chapter-list summary strong { font-size: 1.05rem; }
.chapter-list summary small { color: var(--muted); }
.chapter-list ol { columns: 2; column-gap: 3rem; margin: 0 0 1.5rem 9.5rem; padding: 0; list-style: none; }
.chapter-list li { break-inside: avoid; padding: .45rem 0; color: var(--muted); font-size: .82rem; }
.annex-section { color: var(--white); background: #0b3551; }
.annex-section .audience-grid article { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.06); }
.annex-section .audience-grid p { color: rgba(255,255,255,.62); }
.single-source { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.single-source > * { min-height: 150px; display: flex; flex-direction: column; padding: 1.3rem; border: 1px solid var(--line); border-radius: .9rem; text-decoration: none; overflow-wrap: anywhere; }
.single-source span { color: #0d7183; font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.single-source strong { margin-top: .4rem; }
.single-source small { margin-top: auto; color: var(--muted); font-size: .7rem; }
.single-source .pdf-source strong { display: flex; align-items: center; gap: .65rem; }
.single-source .pdf-source svg { flex: 0 0 auto; color: #d44949; }
.pdf-source strong { display: flex; align-items: center; gap: .65rem; }
.pdf-source svg { flex: 0 0 auto; color: #d44949; }
.regulation-hero { background: radial-gradient(circle at 76% 30%, rgba(185,239,67,.13), transparent 28%), radial-gradient(circle at 86% 65%, rgba(19,120,255,.28), transparent 35%), linear-gradient(135deg, #06101f, #0a2843); }
.regulation-facts { grid-template-columns: repeat(6, 1fr); }
.execution-section { color: var(--white); background: var(--ink); }
.execution-map { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.execution-map li { min-height: 270px; display: grid; grid-template-columns: 2.5rem 1fr; padding: 1.4rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.execution-map li > span { color: var(--lime); font-size: .72rem; font-weight: 850; }
.execution-map small { color: var(--cyan); font-size: .7rem; font-weight: 800; }
.execution-map h3 { margin: 3.3rem 0 .45rem; font-size: 1.15rem; }
.execution-map p { margin: 0; color: rgba(255,255,255,.6); font-size: .84rem; }
.level-section { background: var(--paper); }
.level-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.level-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.level-grid article:nth-child(1) { border-top: 4px solid #43a6b5; }
.level-grid article:nth-child(2) { border-top: 4px solid var(--blue); }
.level-grid article:nth-child(3) { border-top: 4px solid #173e73; }
.level-grid span { color: var(--muted); font-size: .78rem; font-weight: 850; }
.level-grid h3 { margin: auto 0 .4rem; font-size: 1.5rem; }
.level-grid p { margin: 0; color: var(--muted); }
.matrix-note { margin: 1rem 0 0; padding: 1rem 1.2rem; border-radius: .8rem; color: #47596d; background: #eaf2ff; font-size: .82rem; }
.qnrcs-section { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.qnrcs-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.qnrcs-wheel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.qnrcs-wheel article { min-height: 220px; display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; background: rgba(255,255,255,.04); }
.qnrcs-wheel span { color: var(--cyan); font-size: .72rem; font-weight: 850; }
.qnrcs-wheel h3 { margin: auto 0 .4rem; font-size: 1.25rem; }
.qnrcs-wheel p { margin: 0; color: rgba(255,255,255,.6); font-size: .84rem; }
.qnrcs-wheel article{display:flex;flex-direction:column}.qnrcs-guide-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto;padding-top:1rem;border-top:1px solid rgba(255,255,255,.14);color:#30d3dc;font-size:.82rem;font-weight:800;text-decoration:none}.qnrcs-guide-link:hover{color:#fff}.qnrcs-controls-section{background:#f1f5f8}.qnrcs-category-list{display:grid;gap:1rem;margin-top:2rem}.qnrcs-category-list details{scroll-margin-top:9rem;border:1px solid #d5e0e7;border-radius:14px;background:#fff;overflow:hidden}.qnrcs-category-list summary{display:grid;grid-template-columns:6rem 1fr auto;gap:1rem;align-items:center;padding:1.3rem 1.4rem;cursor:pointer}.qnrcs-category-list summary span{color:#0d7183;font-size:.8rem;font-weight:850}.qnrcs-category-list summary strong{font-size:1.15rem}.qnrcs-category-list summary small{color:#667585}.qnrcs-category-list ol{display:grid;gap:0;margin:0;padding:0;border-top:1px solid #dfe7ec;list-style:none}.qnrcs-category-list li{display:grid;grid-template-columns:7rem 1fr;gap:1rem;padding:1rem 1.4rem;border-bottom:1px solid #edf1f4}.qnrcs-category-list li:last-child{border-bottom:0}.qnrcs-category-list li>strong{color:#0d7183;font-size:.84rem}.qnrcs-category-list li p{margin:0;color:#435365;line-height:1.6}
@media(max-width:650px){.qnrcs-category-list summary{grid-template-columns:1fr}.qnrcs-category-list li{grid-template-columns:1fr}.qnrcs-category-list summary small{display:none}}
.regulation-annexes { color: var(--white); background: #0b3551; }
.reg-annex-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.reg-annex-grid article { min-height: 270px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; background: rgba(255,255,255,.05); }
.reg-annex-grid article > span { color: var(--cyan); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.reg-annex-grid h3 { margin: auto 0 .5rem; font-size: 1.35rem; }
.reg-annex-grid p { margin: 0; color: rgba(255,255,255,.65); }
.reg-annex-grid small { margin-top: 1rem; padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); }
.regulation-annex-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:1rem;padding-top:.85rem;border-top:1px solid rgba(255,255,255,.13);color:#b9ef43;font-size:.82rem;font-weight:800;text-decoration:none}.regulation-annex-link:hover{color:#fff}.regulation-annex-link>span{color:inherit;font-size:1rem}.regulation-annex-hero h1{max-width:900px}.annex-practical-points{background:#f1f5f8}
.regulation-sources { grid-template-columns: repeat(3, 1fr); }
.myciber-hero { background: radial-gradient(circle at 76% 28%, rgba(48,211,220,.18), transparent 27%), radial-gradient(circle at 88% 66%, rgba(19,120,255,.25), transparent 34%), linear-gradient(135deg, #06101f, #0a3048); }
.myciber-journey-section { color: var(--white); background: var(--ink); }
.myciber-journey-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.myciber-journey { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.myciber-journey li { display: grid; grid-template-columns: 5rem 1fr; gap: 1.5rem; padding: 1.55rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.journey-number { color: var(--lime); font-size: 1.5rem; font-weight: 850; }
.journey-body { display: grid; grid-template-columns: 1.05fr 1.5fr; gap: .3rem 2rem; }
.journey-phase { grid-column: 1 / -1; margin: 0; color: var(--cyan); font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.journey-body h3 { margin: .35rem 0 0; font-size: 1.25rem; }
.journey-body > p:not(.journey-phase) { margin: .35rem 0 0; color: rgba(255,255,255,.66); font-size: .9rem; }
.journey-body small { grid-column: 2; margin-top: .7rem; color: rgba(255,255,255,.48); }
.journey-body small strong { color: rgba(255,255,255,.75); }
.preparation-section { background: var(--paper); }
.preparation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.preparation-grid article { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.preparation-grid h3 { margin: 0 0 1rem; font-size: 1.15rem; }
.preparation-grid ul { margin: 0; padding: 0; list-style: none; }
.preparation-grid li { padding: .7rem 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .88rem; }
.preparation-grid li::before { content: "✓"; margin-right: .7rem; color: #0d7183; font-weight: 850; }
.role-section { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.role-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.04); }
.role-grid span { color: var(--cyan); font-size: .7rem; font-weight: 850; }
.role-grid h3 { margin: auto 0 .5rem; font-size: 1.3rem; }
.role-grid p { margin: 0; color: rgba(255,255,255,.64); font-size: .88rem; }
.role-note { margin: 1rem 0 0; padding: 1rem 1.2rem; border-left: 4px solid var(--lime); background: rgba(255,255,255,.07); color: rgba(255,255,255,.68); }
.role-note strong { color: var(--white); }
.operation-section { background: var(--white); }
.operation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.operation-grid article { min-height: 230px; padding: 1.35rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.operation-grid span { color: #0d7183; font-size: .7rem; font-weight: 850; }
.operation-grid h3 { margin: 3rem 0 .45rem; font-size: 1.05rem; }
.operation-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.evidence-section { background: var(--paper); }
.evidence-layout { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(3rem, 8vw, 7rem); }
.evidence-layout h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -.04em; line-height: 1.08; }
.evidence-layout > div > p:last-child { color: var(--muted); }
.evidence-layout ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.evidence-layout li { display: grid; grid-template-columns: 3rem 1fr; gap: .7rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.evidence-layout li span { color: #0d7183; font-size: .7rem; font-weight: 850; }
.deadline-section { color: var(--white); background: var(--ink); }
.deadline-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.deadline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.deadline-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.04); }
.deadline-grid span { color: var(--lime); font-size: 1.45rem; font-weight: 850; }
.deadline-grid h3 { margin: auto 0 .45rem; font-size: 1.05rem; }
.deadline-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: .82rem; }
.myciber-sources { grid-template-columns: repeat(3, 1fr); }
.related-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.related-links a { padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: .78rem; font-weight: 750; text-decoration: none; }
.related-links a:hover { border-color: var(--blue); color: var(--blue); }
.implementation-hero { background: radial-gradient(circle at 77% 25%, rgba(185,239,67,.14), transparent 26%), radial-gradient(circle at 88% 70%, rgba(48,211,220,.18), transparent 34%), linear-gradient(135deg, #06101f, #0b2e3e); }
.implementation-model-section { background: var(--paper); }
.implementation-model { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.implementation-model li { min-height: 250px; display: flex; flex-direction: column; padding: 1.4rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.implementation-model span { color: #0d7183; font-size: .72rem; font-weight: 850; }
.implementation-model h3 { margin: auto 0 .45rem; font-size: 1.25rem; }
.implementation-model p { margin: 0; color: var(--muted); font-size: .85rem; }
.domain-section { color: var(--white); background: var(--ink); }
.domain-section .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.domain-list { border-top: 1px solid rgba(255,255,255,.16); }
.domain-list > details { scroll-margin-top: calc(var(--site-header-height) + var(--article-nav-height) + 1rem); border-bottom: 1px solid rgba(255,255,255,.16); }
.domain-list > details > summary { display: grid; grid-template-columns: 4rem 1fr auto; align-items: center; gap: 1rem; padding: 1.35rem 0; cursor: pointer; }
.domain-list > details > summary span { color: var(--lime); font-size: .75rem; font-weight: 850; }
.domain-list > details > summary strong { font-size: 1.1rem; }
.domain-list > details > summary small { max-width: 300px; color: rgba(255,255,255,.46); text-align: right; }
.domain-content { padding: .5rem 0 2rem 5rem; }
.domain-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.domain-intro > div { padding: 1rem; background: rgba(255,255,255,.05); }
.domain-intro p, .domain-intro ul { margin: .25rem 0 0; color: rgba(255,255,255,.65); font-size: .86rem; }
.domain-intro ul { padding-left: 1.1rem; }
.domain-label { color: var(--cyan) !important; font-size: .68rem !important; font-weight: 850; text-transform: uppercase; }
.implementation-columns { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.implementation-columns section { padding: 1rem; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.implementation-columns h3 { margin: 0 0 .8rem; color: var(--cyan); font-size: .8rem; text-transform: uppercase; }
.implementation-columns ul { margin: 0; padding: 0; list-style: none; }
.implementation-columns li { padding: .45rem 0; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.09); font-size: .78rem; }
.domain-cadence { margin: 1rem 0 0; color: rgba(255,255,255,.55); font-size: .75rem; }
.domain-cadence strong { color: rgba(255,255,255,.78); }
.domain-cadence span { margin: 0 .5rem; color: var(--cyan); }
.implementation-flow-section { background: var(--white); }
.implementation-flow { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; }
.implementation-flow li { position: relative; min-height: 230px; padding: 1.2rem; border: 1px solid var(--line); border-right: 0; }
.implementation-flow li:last-child { border-right: 1px solid var(--line); }
.implementation-flow li:not(:last-child)::after { content: "→"; position: absolute; z-index: 1; top: 50%; right: -.55rem; color: var(--blue); font-weight: 900; }
.implementation-flow span { color: #0d7183; font-size: .7rem; font-weight: 850; }
.implementation-flow h3 { margin: 4rem 0 .4rem; font-size: 1rem; }
.implementation-flow p { margin: 0; color: var(--muted); font-size: .78rem; }
.verification-section { background: var(--paper); }
.verification-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.verification-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-top: 4px solid var(--blue); border-radius: 1rem; background: var(--white); }
.verification-grid span { font-size: 1.35rem; font-weight: 850; }
.verification-grid p { margin: auto 0 .8rem; color: var(--muted); }
.verification-grid small { padding-top: .8rem; border-top: 1px solid var(--line); color: #6f7d8b; }
.priority-section { color: var(--white); background: linear-gradient(135deg, #0a4266, #0b1f39 68%); }
.priority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.priority-grid article { min-height: 270px; display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.04); }
.priority-grid span { color: var(--lime); font-size: 1.45rem; font-weight: 850; }
.priority-grid h3 { margin: auto 0 .4rem; }
.priority-grid p { margin: 0; color: rgba(255,255,255,.64); font-size: .85rem; }
.priority-grid small { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.46); }
.implementation-sources { grid-template-columns: repeat(3, 1fr); }
.glossary-hero { background: radial-gradient(circle at 76% 27%, rgba(48,211,220,.18), transparent 28%), radial-gradient(circle at 88% 68%, rgba(19,120,255,.24), transparent 34%), linear-gradient(135deg, #06101f, #0c2944); }
.reference-search-section { background: var(--paper); }
.reference-controls { display: grid; grid-template-columns: 1fr .42fr; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); }
.reference-controls label span { display: block; margin-bottom: .45rem; color: var(--muted); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.reference-controls input, .reference-controls select { width: 100%; min-height: 52px; padding: .8rem 1rem; color: var(--ink); border: 1px solid var(--line); border-radius: .7rem; background: var(--white); font: inherit; }
.reference-controls input:focus, .reference-controls select:focus { border-color: var(--blue); outline: 3px solid rgba(19,120,255,.14); }
.reference-count { margin: 1rem 0 0; color: var(--muted); font-size: .8rem; }
.glossary-section { color: var(--white); background: var(--ink); }
.glossary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.glossary-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.04); scroll-margin-top: calc(var(--site-header-height) + var(--article-nav-height) + 1rem); }
.glossary-grid article[hidden], .reference-faq-list details[hidden] { display: none; }
.glossary-topline { display: flex; justify-content: space-between; color: var(--cyan); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.glossary-topline a { color: rgba(255,255,255,.38); font-size: 1rem; text-decoration: none; }
.glossary-grid h3 { margin: auto 0 .6rem; font-size: 1.45rem; }
.glossary-grid article > p { margin: 0 0 1rem; color: rgba(255,255,255,.66); font-size: .9rem; }
.term-source { margin-top: auto; padding-top: .8rem; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; text-decoration: none; }
.term-source:hover { color: var(--cyan); }
.reference-faq-section { background: var(--paper); }
.reference-faq-list { border-top: 1px solid var(--line); }
.reference-faq-list details { scroll-margin-top: calc(var(--site-header-height) + var(--article-nav-height) + 1rem); border-bottom: 1px solid var(--line); }
.reference-faq-list summary { padding: 1.2rem 2rem 1.2rem 0; font-weight: 800; cursor: pointer; }
.reference-faq-list details > div { padding: 0 0 1.3rem; }
.reference-faq-list p { max-width: 850px; margin: 0 0 .8rem; color: var(--muted); }
.reference-faq-list a { color: var(--blue); font-size: .78rem; font-weight: 750; text-decoration: none; }
.reference-empty { padding: 2rem; color: var(--muted); border: 1px dashed var(--line); border-radius: 1rem; text-align: center; }
.resources-hero { background: radial-gradient(circle at 78% 25%, rgba(185,239,67,.15), transparent 27%), radial-gradient(circle at 88% 69%, rgba(48,211,220,.18), transparent 34%), linear-gradient(135deg, #06101f, #0a3043); }
.resource-catalog-section { background: var(--paper); }
.resource-controls { display: grid; grid-template-columns: 1fr .42fr .3fr; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.resource-controls label span { display: block; margin-bottom: .45rem; color: var(--muted); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.resource-controls input, .resource-controls select { width: 100%; min-height: 50px; padding: .75rem .9rem; color: var(--ink); border: 1px solid var(--line); border-radius: .7rem; background: var(--white); font: inherit; }
.resource-format-legend { display: flex; flex-wrap: wrap; gap: .45rem .7rem; margin-top: .8rem; color: var(--muted); font-size: .8rem; }
.resource-format-legend button { padding: .25rem .45rem; color: inherit; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.65); font: inherit; cursor: pointer; }
.resource-format-legend button:hover { color: var(--ink); border-color: #aab9c5; background: var(--white); }
.resource-format-legend strong { margin-right: .25rem; color: inherit; font-size: inherit; }
.library-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.library-grid > article { position: relative; min-height: 400px; display: flex; flex-direction: column; overflow: hidden; padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); isolation: isolate; transition: color .35s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.library-grid > article::before { content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; background: linear-gradient(180deg,rgba(7,20,38,.18),rgba(7,20,38,.94)); transition: opacity .4s ease; pointer-events: none; }
.resource-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1); transition: opacity .42s ease, transform .7s ease; }
.library-grid > article > :not(.resource-card-image) { position: relative; z-index: 2; }
.library-grid > article:is(:hover,:focus-within) { color: var(--white); border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.library-grid > article:is(:hover,:focus-within)::before,.library-grid > article:is(:hover,:focus-within) .resource-card-image { opacity: 1; }
.library-grid > article:is(:hover,:focus-within) .resource-card-image { transform: scale(1.04); }
.library-grid > article:is(:hover,:focus-within) .resource-card-top { color: rgba(255,255,255,.85); }
.library-grid > article:is(:hover,:focus-within) > p,.library-grid > article:is(:hover,:focus-within) .resource-card-footer > span:first-child { color: rgba(255,255,255,.74); }
.library-grid > article:is(:hover,:focus-within) .resource-tags li { color: var(--white); background: rgba(255,255,255,.14); }
.library-grid > article:is(:hover,:focus-within) .resource-card-footer { border-top-color: rgba(255,255,255,.24); }
.library-grid > article:is(:hover,:focus-within) .resource-download { color: var(--ink); background: var(--white); }
.library-grid > article[hidden] { display: none; }
.resource-card-top { display: flex; justify-content: space-between; color: #0d7183; font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.resource-card-top small { padding: .25rem .55rem; border-radius: 999px; color: var(--ink); background: var(--paper); }
.library-grid h3 { margin: 3rem 0 .6rem; font-size: 1.45rem; }
.library-grid article > p { margin: 0; color: var(--muted); }
.resource-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0; padding: 0; list-style: none; }
.resource-tags li { padding: .3rem .5rem; border-radius: 999px; color: #526274; background: var(--paper); font-size: .68rem; }
.resource-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.resource-card-footer > span:first-child { color: var(--muted); font-size: .7rem; }
.resource-download { min-height: 42px; padding: .65rem .9rem; font-size: .75rem; }
.resource-planned { color: #7b8794; font-size: .75rem; font-weight: 800; }
.access-level-section { color: var(--white); background: var(--ink); }
.access-level-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.access-level-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 1.2rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.access-level-grid span { color: var(--lime); font-size: .7rem; font-weight: 850; }
.access-level-grid h3 { margin: 3rem 0 .5rem; font-size: 1rem; }
.access-level-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .8rem; }
.access-level-grid small { margin-top: auto; padding-top: .8rem; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.1); }
.download-transparency { overflow: hidden; background: linear-gradient(180deg, var(--white), #f4f8fc); }
.download-transparency-heading { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.65fr); align-items: end; gap: clamp(2rem,6vw,6rem); }
.download-transparency-heading h2 { max-width: 780px; margin-bottom: 0; }
.download-transparency-heading > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 1.03rem; line-height: 1.75; }
.download-transparency-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 2.4rem; }
.download-transparency-grid article { display: grid; grid-template-columns: 3.1rem 1fr; align-items: start; gap: 1rem; min-height: 100%; padding: 1.45rem; border: 1px solid #dbe5ef; border-radius: 1rem; background: rgba(255,255,255,.9); box-shadow: 0 16px 42px rgba(7,20,38,.06); }
.download-transparency-grid article > span { display: grid; place-items: center; width: 3.1rem; height: 3.1rem; border-radius: .85rem; color: var(--white); background: linear-gradient(145deg,#0b2a4a,#145da0); }
.download-transparency-grid svg { width: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.download-transparency-grid h3 { margin: .15rem 0 .55rem; color: var(--ink); font-size: 1rem; }
.download-transparency-grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.download-transparency-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1rem; padding: 1.25rem 1.45rem; border-left: 4px solid var(--lime); border-radius: .3rem 1rem 1rem .3rem; color: var(--white); background: var(--ink); }
.download-transparency-note div { display: flex; align-items: baseline; gap: .55rem; }
.download-transparency-note strong { white-space: nowrap; color: var(--lime); }
.download-transparency-note p { margin: 0; color: #d5e0eb; font-size: .82rem; line-height: 1.55; }
.download-transparency-note a { flex: 0 0 auto; color: var(--white); font-size: .78rem; font-weight: 850; text-decoration: none; }
.download-transparency-note a:hover,.download-transparency-note a:focus-visible { color: var(--lime); }
@media(max-width:900px){.download-transparency-heading{grid-template-columns:1fr;gap:1rem}.download-transparency-grid{grid-template-columns:1fr}.download-transparency-note{align-items:flex-start;flex-direction:column}.download-transparency-note div{align-items:flex-start;flex-direction:column;gap:.35rem}}
.resource-access-page { min-height: 100vh; padding: calc(var(--site-header-height) + 4rem) 0 5rem; background: var(--paper); }
.resource-access-layout { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.resource-access-layout > section { position: sticky; top: calc(var(--site-header-height) + 2rem); }
.resource-access-layout h1 { margin: .5rem 0 1rem; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.045em; }
.resource-access-layout > section > p:not(.eyebrow) { color: var(--muted); }
.resource-back { display: inline-block; margin-top: 1.5rem; color: var(--blue); font-size: .82rem; font-weight: 800; text-decoration: none; }
.resource-access-form { display: grid; gap: 1rem; padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); }
.resource-access-form h2 { margin: .2rem 0; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.resource-access-form > div > p:last-child, .form-privacy { color: var(--muted); font-size: .8rem; }
.resource-access-form label > span { display: block; margin-bottom: .4rem; font-size: .76rem; font-weight: 800; }
.resource-access-form input:not([type="checkbox"]), .resource-access-form textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: .65rem; background: var(--white); font: inherit; }
.resource-access-form textarea { min-height: 120px; resize: vertical; }
.resource-access-form input:focus, .resource-access-form textarea:focus { border-color: var(--blue); outline: 3px solid rgba(19,120,255,.14); }
.field-error { display: block; min-height: 1.2em; margin-top: .25rem; color: #a32828; font-size: .7rem; }
.consent-field { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; padding: 1rem; border-radius: .65rem; background: var(--paper); }
.consent-field input { margin-top: .25rem; }
.consent-field span { margin: 0 !important; color: var(--muted); font-weight: 600 !important; }
.resource-optional-email { display: block; padding: 1rem; border: 1px solid var(--line); border-radius: .65rem; background: #f8fafb; }
.resource-optional-email[hidden] { display: none; }
.resource-optional-email > span { display: block; margin-bottom: .35rem; font-size: .74rem; font-weight: 800; }
.resource-optional-email input { width: 100%; min-height: 48px; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: .65rem; background: var(--white); font: inherit; }
.resource-optional-email small { display: block; margin-top: .3rem; color: var(--muted); font-size: .68rem; }
.required-consent { border: 1px solid #cad7e2; }
.resource-modal { width: min(640px, calc(100% - 1.25rem)); max-height: min(88vh, 820px); padding: 0; color: var(--ink); border: 0; border-radius: 1rem; box-shadow: 0 28px 90px rgba(7,20,38,.35); }
.resource-modal::backdrop { background: rgba(7,20,38,.74); backdrop-filter: blur(5px); }
.resource-modal form { position: relative; display: grid; gap: 1rem; padding: clamp(1.4rem, 5vw, 2.5rem); }
.resource-modal h2 { margin: -.2rem 2rem 0 0; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.08; }
.resource-modal .resource-modal-format { margin: -.55rem 0 0; color: var(--ink-2); font-size: 1.05rem; font-weight: 800; letter-spacing: .02em; }
.resource-modal form > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.resource-modal form > p.resource-modal-format { margin-top: -.55rem; color: var(--ink-2); }
.resource-modal-close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; padding: 0; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 1.5rem; cursor: pointer; }
.resource-modal-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.resource-modal-fields label:last-child:nth-child(odd) { grid-column: 1 / -1; }
.resource-modal-fields label > span { display: block; margin-bottom: .35rem; font-size: .74rem; font-weight: 800; }
.resource-modal-fields input, .resource-modal-fields textarea { width: 100%; min-height: 48px; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: .65rem; background: var(--white); font: inherit; }
.resource-modal-fields textarea { min-height: 100px; resize: vertical; }
.resource-modal [type="submit"]:disabled { opacity: .4; cursor: not-allowed; }
.format-info-modal { width: min(560px, calc(100% - 1.25rem)); padding: 0; color: var(--ink); border: 0; border-radius: 1rem; box-shadow: 0 28px 90px rgba(7,20,38,.35); }
.format-info-modal::backdrop { background: rgba(7,20,38,.7); backdrop-filter: blur(5px); }
.format-info-modal > div { position: relative; display: grid; gap: .9rem; padding: clamp(1.4rem, 5vw, 2.3rem); }
.format-info-modal h2 { max-width: 440px; margin: -.2rem 2rem 0 0; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.08; }
.format-info-modal > div > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.format-info-modal > div > p.format-info-subtitle { margin: -.65rem 2rem 0 0; color: var(--ink-2); font-size: 1.08rem; font-weight: 800; line-height: 1.25; letter-spacing: .01em; }
.format-info-modal section { padding-top: .8rem; border-top: 1px solid var(--line); }
.format-info-modal h3 { margin: 0 0 .25rem; font-size: .9rem; }
.format-info-modal section p { margin: 0; color: var(--muted); font-size: .82rem; }
.format-info-modal small { color: #73808e; font-size: .7rem; }
.resource-detail-nav { display: flex; gap: 1.2rem; }.resource-detail-nav a { position:relative; color: rgba(255,255,255,.75); font-size: .8rem; text-decoration: none; }
.resource-detail-page { background: var(--paper); }.resource-detail-hero { position: relative; padding: calc(var(--site-header-height) + 5rem) 0 6rem; color: var(--white); background: radial-gradient(circle at 78% 30%, rgba(19,120,255,.3), transparent 30%), linear-gradient(135deg,#071426,#123553); }
.resource-detail-hero h1 { max-width: 980px; margin: 1rem 0; font-size: clamp(2.8rem,7vw,6rem); line-height: .98; letter-spacing: -.055em; }.resource-detail-hero>div>p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.resource-detail-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }.resource-detail-meta span { padding: .4rem .7rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .72rem; }
.resource-detail-download { background: var(--white); }.resource-detail-download-layout { display: grid; grid-template-columns: 1fr .55fr; gap: clamp(2rem,8vw,7rem); align-items: center; }.resource-detail-download h2 { margin: .4rem 0; font-size: clamp(2.2rem,5vw,4rem); line-height: 1; }.resource-detail-download-layout>div>p:last-child { color: var(--muted); }
.resource-detail-download form { display: grid; gap: .7rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); }.resource-detail-download form strong { font-size: 1.2rem; }.resource-detail-download form span,.resource-detail-download form small { color: var(--muted); font-size: .72rem; }
.resource-detail-download figure { display: grid; place-items: center; margin: .9rem 0 0; padding: 0; overflow: hidden; border: 0; border-radius: .75rem; background: var(--ink); }.resource-detail-download figure img { width: 100%; max-width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; object-position: center; border: 0; background: transparent; box-shadow: none; }
.resource-detail-context { color: var(--white); background: var(--ink); }.resource-detail-columns { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(3rem,10vw,8rem); }.resource-detail-columns h2 { max-width: 680px; font-size: clamp(2.2rem,5vw,4rem); line-height: 1; }.resource-detail-columns ol { display: grid; gap: .8rem; padding-left: 1.4rem; color: rgba(255,255,255,.68); }.resource-detail-tags { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }.resource-detail-tags li { padding: .4rem .6rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: var(--cyan); font-size: .72rem; }.resource-detail-columns h3 { margin-top: 2rem; }.resource-source-link { display: block; margin-top: .5rem; color: var(--cyan); font-size: .8rem; text-decoration: none; }
.resource-detail-next { color: var(--white); background: linear-gradient(135deg,#0a4266,#0b1f39 68%); }.resource-detail-next .section-heading h2 { color: var(--white); }.resource-detail-next .section-heading>p:last-child { color: rgba(255,255,255,.65); }.resource-next-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }.resource-next-actions>a:not(.button) { color: var(--cyan); font-size: .82rem; font-weight: 800; text-decoration: none; }
.resource-detail-related { background: var(--paper); }.resource-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }.resource-related-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 1.3rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }.resource-related-grid article>span { color: #0d7183; font-size: .68rem; font-weight: 850; }.resource-related-grid h3 { margin: auto 0 .5rem; }.resource-related-grid p { color: var(--muted); font-size: .82rem; }.resource-related-grid a { margin-top: 1rem; color: var(--blue); font-size: .78rem; font-weight: 800; text-decoration: none; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
@media (max-width: 960px) {
    .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-brand { grid-column: 1 / -1; }
    .nav-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-content: center;
        gap: 6px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
        color: var(--white);
        background: transparent;
    }
    .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; display: block; background: currentColor; }
    .main-nav {
        position: absolute;
        top: var(--site-header-height);
        left: 1rem;
        right: 1rem;
        display: none;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 1rem;
        background: #0b1c31;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: .65rem; }
    .main-nav a.is-nav-active:not(.nav-cta):not(.nav-support)::after, .main-nav a[aria-current="page"]:not(.nav-cta):not(.nav-support)::after {
        right: auto;
        bottom: .2rem;
        left: .65rem;
        width: 28px;
    }
    .hero-layout, .row-heading, .resources-layout { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-panel { max-width: 580px; }
    .hero::before { background: linear-gradient(90deg, rgba(6,16,31,.98), rgba(6,16,31,.78)); }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .method-list { grid-template-columns: repeat(2, 1fr); }
    .method-list li { border-bottom: 1px solid var(--line); }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .knowledge-principles ul { grid-template-columns: repeat(3, 1fr); }
    .legal-layer-grid, .audience-grid { grid-template-columns: 1fr; }
    .obligation-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; }
    .fact-strip { grid-template-columns: repeat(3, 1fr); }
    .critical-grid { grid-template-columns: repeat(2, 1fr); }
    .regulation-facts { grid-template-columns: repeat(3, 1fr); }
    .execution-map, .qnrcs-wheel { grid-template-columns: repeat(2, 1fr); }
    .role-grid, .operation-grid { grid-template-columns: repeat(2, 1fr); }
    .deadline-grid { grid-template-columns: repeat(2, 1fr); }
    .evidence-layout { grid-template-columns: 1fr; }
    .implementation-model, .priority-grid { grid-template-columns: repeat(2, 1fr); }
    .implementation-columns { grid-template-columns: repeat(2, 1fr); }
    .implementation-flow { grid-template-columns: repeat(3, 1fr); }
    .implementation-flow li:nth-child(3) { border-right: 1px solid var(--line); }
    .implementation-flow li:nth-child(3)::after { display: none; }
    .glossary-grid { grid-template-columns: 1fr; }
    .resource-controls { grid-template-columns: 1fr 1fr; }
    .resource-controls label:first-child { grid-column: 1 / -1; }
    .access-level-grid { grid-template-columns: repeat(2, 1fr); }
    .newsroom-grid { grid-template-columns: repeat(2, 1fr); }
    .principle-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 1fr; }
    .article-related { position: static; }
    .resource-access-layout { grid-template-columns: 1fr; }
    .resource-access-layout > section { position: static; }
    .resource-detail-download-layout,.resource-detail-columns { grid-template-columns: 1fr; }
    .resource-modal-fields { grid-template-columns: 1fr; }
    .resource-modal-fields label:last-child:nth-child(odd) { grid-column: auto; }
    .resource-detail-nav { display: none; }
    .resource-related-grid { grid-template-columns: 1fr; }
    .resource-detail-download figure img { width: 100%; height: auto; }
}
@media (max-width: 650px) {
    .shell { width: min(100% - 1.25rem, 1180px); }
    .section { padding: 4rem 0; }
    .hero { padding-top: 8rem; }
    .hero h1 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
    .hero-layout { gap: 3rem; }
    .hero-visual img { object-position: 68% center; opacity: .45; }
    .editorial-feature img { aspect-ratio: 4 / 3; }
    .editorial-feature figcaption { align-items: start; flex-direction: column; gap: .35rem; }
    .editorial-feature figcaption strong,.editorial-feature figcaption span { max-width: none; text-align: left; }
    .inner-hero-visual img { object-position: 62% center; opacity: .55; }
    .newsroom-index-hero .inner-hero-visual img { object-position: 70% center; opacity: .62; }
    .actions .button { width: 100%; }
    .profile-grid, .problem-grid, .knowledge-grid, .solution-grid, .split-heading { grid-template-columns: 1fr; }
    .topic-grid, .need-list, .knowledge-principles ul { grid-template-columns: 1fr; }
    .knowledge-principles li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .need-list a:nth-child(odd), .need-list a:nth-child(even) { padding-inline: 0; border-right: 0; }
    .plain-language, .legal-timeline li, .first-steps li { grid-template-columns: 1fr; gap: .4rem; }
    .obligation-grid, .source-grid { grid-template-columns: 1fr; }
    .article-nav .shell { width: 100%; padding-inline: .65rem; }
    .article-nav .shell > span { position: sticky; left: 0; z-index: 1; padding: .45rem .65rem .45rem 0; background: linear-gradient(90deg, rgba(255,255,255,.99) 78%, rgba(255,255,255,0)); }
    .fact-strip, .critical-grid, .single-source { grid-template-columns: 1fr; }
    .fact-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
    .chapter-list summary { grid-template-columns: 1fr; gap: .25rem; }
    .chapter-list ol { columns: 1; margin-left: 0; }
    .incident-flow li { grid-template-columns: 1fr; gap: .3rem; }
    .execution-map, .level-grid, .qnrcs-wheel, .reg-annex-grid, .regulation-sources { grid-template-columns: 1fr; }
    .myciber-journey li, .journey-body { grid-template-columns: 1fr; gap: .4rem; }
    .journey-body small { grid-column: 1; }
    .preparation-grid, .role-grid, .operation-grid, .deadline-grid, .myciber-sources { grid-template-columns: 1fr; }
    .implementation-model, .domain-intro, .implementation-columns, .implementation-flow, .verification-grid, .priority-grid, .implementation-sources { grid-template-columns: 1fr; }
    .domain-list > details > summary { grid-template-columns: 3rem 1fr; }
    .domain-list > details > summary small { grid-column: 2; text-align: left; }
    .domain-content { padding-left: 0; }
    .implementation-flow li { min-height: auto; border-right: 1px solid var(--line); border-bottom: 0; }
    .implementation-flow li:last-child { border-bottom: 1px solid var(--line); }
    .implementation-flow li::after { display: none; }
    .reference-controls { grid-template-columns: 1fr; }
    .resource-controls, .library-grid, .access-level-grid { grid-template-columns: 1fr; }
    .resource-controls label:first-child { grid-column: auto; }
    .resource-card-footer { align-items: stretch; flex-direction: column; }
    .resource-download { width: 100%; }
    .newsroom-grid, .principle-grid { grid-template-columns: 1fr; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .archive-list article { grid-template-columns: 48px minmax(0,1fr); gap: .3rem .7rem; }
    .archive-cover { width:48px; grid-row:1 / 4; }
    .archive-list article > span, .archive-list article > div, .archive-list time { grid-column:2; }
    .archive-list time { text-align:left; }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .choice { min-height: 92px; padding: .8rem; }
    .journey-result, .cta-layout, .footer-layout { align-items: stretch; flex-direction: column; }
    .journey-result .button { width: 100%; }
    .method-list { grid-template-columns: 1fr; }
    .method-list li { min-height: auto; border-right: 0; }
    .method-list h3 { margin-top: 1.8rem; }
    .footer-meta { align-items: flex-start; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-column:last-child { grid-column: 1 / -1; }
    .footer-bottom .shell { align-items: flex-start; flex-direction: column; }
}
@media (hover: none) {
    .topic-card.image-first,.topic-card.text-first { color: var(--ink); background: var(--white); }
    .topic-card.image-first::before,.topic-card.text-first::before { opacity: 0; }
    .topic-card.image-first .topic-card-image,.topic-card.text-first .topic-card-image { opacity: .13; transform: none; }
    .topic-card.image-first .topic-topline,.topic-card.text-first .topic-topline,.topic-card.image-first .card-kicker,.topic-card.text-first .card-kicker { color: #0d7183; }
    .topic-card.image-first .topic-description,.topic-card.text-first .topic-description { color: var(--muted); opacity: 1; transform: none; }
    .topic-card.image-first .topic-state,.topic-card.text-first .topic-state { color: #7b8794; }
    .library-grid > article .resource-card-image { opacity: .11; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.cookie-banner{position:fixed;z-index:1000;right:1rem;bottom:1rem;left:1rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;width:min(1180px,calc(100% - 2rem));margin-inline:auto;padding:1.15rem 1.25rem;border:1px solid rgba(255,255,255,.16);border-radius:14px;color:#fff;background:rgba(7,20,38,.97);box-shadow:0 24px 70px rgba(0,0,0,.3);backdrop-filter:blur(18px)}.cookie-banner[hidden]{display:none}.cookie-banner strong{font-size:1.05rem}.cookie-banner p{max-width:720px;margin:.2rem 0;color:#c6d2dc;font-size:.86rem;line-height:1.5}.cookie-banner a{color:#cde682;font-size:.8rem;text-underline-offset:.2rem}.cookie-banner-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.55rem}.cookie-banner button,.cookie-dialog button{padding:.62rem .8rem;border:1px solid #7c8d9c;border-radius:8px;color:#fff;background:transparent;cursor:pointer;font-size:.78rem;font-weight:750}.cookie-banner .cookie-accept,.cookie-dialog .cookie-save{border-color:#95c11f;color:#071426;background:#b9ef43}.cookie-dialog{width:min(680px,calc(100% - 2rem));padding:0;border:0;border-radius:16px;color:#071426;background:#fff;box-shadow:0 25px 90px rgba(0,0,0,.35)}.cookie-dialog::backdrop{background:rgba(3,10,20,.72);backdrop-filter:blur(5px)}.cookie-dialog form{padding:1.4rem}.cookie-dialog-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem}.cookie-dialog-heading span{color:#0d7183;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.cookie-dialog-heading h2{margin:.2rem 0;font-size:1.65rem}.cookie-dialog .cookie-close{padding:.1rem .55rem;border-color:#c8d2da;color:#071426;font-size:1.4rem}.cookie-dialog>form>p{color:#5d6b7c;font-size:.9rem}.cookie-category{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0;border-top:1px solid #dfe6eb}.cookie-category div{display:grid}.cookie-category span{color:#657280;font-size:.82rem}.cookie-category label{display:flex;align-items:center;gap:.4rem;white-space:nowrap;font-size:.76rem;font-weight:750}.cookie-category.is-unavailable{opacity:.65}.cookie-dialog-actions{display:flex;justify-content:flex-end;gap:.6rem;padding-top:1rem;border-top:1px solid #dfe6eb}.cookie-dialog-actions button:not(.cookie-save){color:#071426}
@media(max-width:760px){.cookie-banner{align-items:stretch;flex-direction:column}.cookie-banner-actions{display:grid;grid-template-columns:1fr}.cookie-banner button{width:100%}.cookie-category{align-items:flex-start;flex-direction:column}.cookie-dialog-actions{display:grid;grid-template-columns:1fr}.cookie-dialog-actions button{width:100%}}

.critical-grid article{display:flex;flex-direction:column}.critical-tutorial-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto;padding-top:1.15rem;border-top:1px solid var(--line);color:#0d7183;font-size:.82rem;font-weight:800;text-decoration:none}.critical-tutorial-link:hover{color:#fff}.tutorial-hero{padding:9.5rem 0 4.5rem;color:#fff;background:radial-gradient(circle at 82% 20%,rgba(13,113,131,.34),transparent 30%),#071426}.tutorial-hero-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr);gap:clamp(2rem,7vw,7rem);align-items:end}.tutorial-hero h1{max-width:880px;margin:.6rem 0 1rem;font-size:clamp(2.7rem,5.5vw,5rem);line-height:1.02;letter-spacing:-.045em}.tutorial-lead{max-width:800px;color:#d4e0e8;font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.7}.tutorial-hero aside{padding:1.6rem;border:1px solid rgba(255,255,255,.18);border-radius:16px;background:rgba(255,255,255,.06)}.tutorial-hero aside span{color:#b9ef43;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.tutorial-hero aside p{margin:.6rem 0 0;color:#e3edf2;line-height:1.65}.tutorial-split,.tutorial-list-layout{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:clamp(2rem,7vw,7rem);align-items:start}.tutorial-split h2,.tutorial-list-layout h2{margin:.35rem 0;font-size:clamp(2rem,4vw,3.3rem)}.tutorial-split>p{margin:0;color:#536173;font-size:1.15rem;line-height:1.8}.tutorial-steps{background:#f1f5f8}.tutorial-steps ol{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin:2rem 0 0;padding:1px;background:#d5e0e7;list-style:none}.tutorial-steps li{display:grid;grid-template-columns:3.3rem 1fr;gap:1rem;min-height:210px;padding:1.6rem;background:#fff}.tutorial-steps li>span{color:#0d7183;font-size:.8rem;font-weight:800}.tutorial-steps h3{margin:0 0 .7rem;font-size:1.35rem}.tutorial-steps p{margin:0;color:#5c6977;line-height:1.65}.tutorial-list-layout>ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem;margin:0;padding:0;list-style:none}.tutorial-list-layout li{padding:1rem 1.1rem 1rem 2rem;border:1px solid #d8e1e8;border-radius:10px;background:#fff;position:relative}.tutorial-list-layout li::before{content:"";position:absolute;top:1.4rem;left:1rem;width:7px;height:7px;border-radius:50%;background:#95c11f}.tutorial-mistakes{color:#fff;background:#0b2037}.tutorial-mistakes .eyebrow{color:#b9ef43}.tutorial-mistakes li{border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.05)}.tutorial-mistakes li::before{background:#f1a65a}.tutorial-checklist{background:#f4f7f9}.tutorial-checklist>div>ul{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:.8rem;margin:2rem 0 0;padding:0;list-style:none}.tutorial-checklist li{display:grid;gap:1rem;min-height:130px;padding:1.2rem;border:1px solid #d5dfe6;border-radius:10px;background:#fff;font-weight:750}.tutorial-checklist li span{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;color:#071426;background:#b9ef43}.source-card{display:flex;align-items:center;justify-content:space-between;gap:2rem}.source-card>div{max-width:760px}
@media(max-width:800px){.tutorial-hero-layout,.tutorial-split,.tutorial-list-layout{grid-template-columns:1fr}.tutorial-steps ol,.tutorial-list-layout>ul{grid-template-columns:1fr}.tutorial-checklist>div>ul{grid-template-columns:repeat(2,minmax(0,1fr))}.source-card{align-items:flex-start;flex-direction:column}}
@media(max-width:520px){.tutorial-hero{padding-top:8rem}.tutorial-steps li{grid-template-columns:1fr;min-height:auto}.tutorial-checklist>div>ul{grid-template-columns:1fr}}

.annex-section .audience-grid article{display:flex;flex-direction:column}.annex-guide-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto;padding-top:1rem;border-top:1px solid var(--line);color:#0d7183;font-size:.82rem;font-weight:800;text-decoration:none}.annex-guide-link:hover{color:#071426}.annex-content{background:#f1f5f8}.annex-sector-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin-top:2rem;padding:1px;background:#d5e0e7}.annex-sector-grid article{min-height:190px;padding:1.5rem;background:#fff}.annex-sector-grid article>span{color:#0d7183;font-size:.76rem;font-weight:800}.annex-sector-grid h3{margin:1.4rem 0 .6rem;font-size:1.3rem}.annex-sector-grid p{margin:0;color:#5c6977;line-height:1.65}.annex-threshold-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:2rem}.annex-threshold-grid article{padding:1.6rem;border:1px solid #d3dee6;border-radius:12px;background:#fff}.annex-threshold-grid h3{margin:0 0 1.5rem;font-size:1.45rem}.annex-threshold-grid strong{display:block;color:#0d7183;font-size:1.05rem}.annex-threshold-grid p{margin:.7rem 0 0;color:#596777;line-height:1.65}.annex-page .tutorial-steps ol{grid-template-columns:repeat(5,minmax(0,1fr))}.annex-page .tutorial-steps li{grid-template-columns:1fr;min-height:175px}.annex-page .tutorial-steps h3{margin-top:1.2rem}
@media(max-width:900px){.annex-page .tutorial-steps ol{grid-template-columns:1fr}.annex-page .tutorial-steps li{min-height:auto}.annex-threshold-grid{grid-template-columns:1fr}}
@media(max-width:650px){.annex-sector-grid{grid-template-columns:1fr}.annex-sector-grid article{min-height:auto}}

.level-grid article{display:flex;flex-direction:column}.level-guide-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto;padding-top:1rem;border-top:1px solid var(--line);color:#0d7183;font-size:.82rem;font-weight:800;text-decoration:none}.level-guide-link:hover{color:#071426}.regulation-level-hero h1{margin-bottom:.25rem;color:#b9ef43}.level-name{margin:0 0 1rem;color:#fff;font-size:clamp(1.5rem,3vw,2.2rem);font-weight:800}.level-calculation{background:#f1f5f8}.calculation-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;margin-top:2rem;padding:1px;background:#d5e0e7}.calculation-grid article{min-height:210px;padding:1.5rem;background:#fff}.calculation-grid article>span{color:#0d7183;font-size:.76rem;font-weight:800}.calculation-grid h3{margin:1.5rem 0 .6rem;font-size:1.25rem}.calculation-grid p{margin:0;color:#5c6977;line-height:1.65}.level-focus{background:#fff}
@media(max-width:850px){.calculation-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:550px){.calculation-grid{grid-template-columns:1fr}.calculation-grid article{min-height:auto}}
.incident-support{position:relative;overflow:hidden;color:#fff;background:#071426}.incident-support::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 20%,rgba(13,113,131,.38),transparent 34%),linear-gradient(135deg,transparent 55%,rgba(88,183,200,.08))}.incident-support-layout{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(2.5rem,7vw,7rem);align-items:center}.incident-support-copy h2{max-width:760px;margin:.55rem 0 1.2rem;font-size:clamp(2.3rem,4.6vw,4.5rem);line-height:1.04}.incident-support-lead{max-width:720px;color:#d6e1ea;font-size:1.12rem;line-height:1.75}.incident-support .actions{margin-top:1.7rem}.incident-support .button-ghost{border-color:#8298aa;color:#fff}.incident-support-notice{max-width:720px;margin:1.4rem 0 0;padding-left:1rem;border-left:3px solid #95c11f;color:#aebfcd;font-size:.84rem;line-height:1.6}.incident-support-points{display:grid;gap:1px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.14)}.incident-support-points article{display:grid;grid-template-columns:auto 1fr;gap:1.2rem;padding:1.45rem;background:rgba(7,20,38,.92)}.incident-support-points span{color:#95c11f;font-size:.75rem;font-weight:800}.incident-support-points h3{margin:0 0 .4rem;color:#fff;font-size:1.12rem}.incident-support-points p{margin:0;color:#bdcad5;line-height:1.6}@media(max-width:820px){.incident-support-layout{grid-template-columns:1fr}.incident-support-points{max-width:680px}}@media(max-width:650px){.incident-support .actions{display:grid}.incident-support-copy h2{font-size:clamp(2.15rem,10vw,3.2rem)}}
.hero-notification-button{position:relative;z-index:1;isolation:isolate;align-self:center;padding:.48rem .78rem;border:1px solid #ef7777;color:#fff;background:#b4232f;box-shadow:0 9px 24px rgba(180,35,47,.25);font-size:.76rem}.hero-notification-button::before,.hero-notification-button::after{position:absolute;inset:-2px;z-index:-1;border:1.5px solid rgba(255,174,174,.72);border-radius:inherit;content:"";pointer-events:none;animation:notification-button-wave 3.2s ease-out infinite}.hero-notification-button::after{animation-delay:1.6s}.hero-notification-button:hover,.hero-notification-button:focus-visible{border-color:#ff9a9a;background:#d02d3b}@keyframes notification-button-wave{0%{opacity:.6;transform:scale(.98)}72%,100%{opacity:0;transform:scale(1.38,1.65)}}@media(prefers-reduced-motion:reduce){.hero-notification-button::before,.hero-notification-button::after{display:none;animation:none}}@media(max-width:650px){.hero-copy .hero-notification-button{width:fit-content;justify-self:start}}

/* Homepage — cronologia NIS2 / MyCiber */
.cp-nis2-timeline {
    --cp-card: rgba(255,255,255,.055);
    --cp-border: rgba(255,255,255,.12);
    --cp-text: #f4f8fc;
    --cp-muted: #aebdcb;
    --cp-cyan: #29d5e5;
    --cp-blue: #3487ff;
    --cp-warning: #f6b73c;
    --cp-danger: #ff6b76;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--cp-text);
    background:
        radial-gradient(circle at 82% 15%,rgba(41,213,229,.14),transparent 30%),
        radial-gradient(circle at 12% 90%,rgba(52,135,255,.11),transparent 34%),
        linear-gradient(145deg,#07121f 0%,#091827 55%,#07121f 100%);
}
.cp-nis2-timeline .cp-wrap { width:min(1180px,calc(100% - 2rem)); margin-inline:auto; }
.cp-nis2-timeline .cp-top { display:grid;grid-template-columns:minmax(0,1.55fr) minmax(280px,.75fr);gap:clamp(1.5rem,4vw,3.25rem);align-items:end;margin-bottom:2.1rem; }
.cp-nis2-timeline .cp-eyebrow { position:relative;display:inline-flex;align-items:center;gap:.6rem;margin:0 0 .8rem;color:var(--cp-cyan);font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase; }
.cp-nis2-timeline .cp-eyebrow::before { width:.5rem;height:.5rem;border-radius:50%;background:currentColor;box-shadow:0 0 0 .4rem rgba(41,213,229,.1);content:""; }
.cp-nis2-timeline .cp-eyebrow::after { position:absolute;top:50%;left:.25rem;width:.65rem;height:.65rem;border:1.5px solid rgba(41,213,229,.72);border-radius:50%;content:"";pointer-events:none;transform:translate(-50%,-50%);animation:cp-timeline-eyebrow-pulse 2.8s ease-out infinite; }
@keyframes cp-timeline-eyebrow-pulse { 0%{opacity:.78;transform:translate(-50%,-50%) scale(.8)} 72%,100%{opacity:0;transform:translate(-50%,-50%) scale(2.65)} }
.cp-nis2-timeline h2 { max-width:800px;margin:0;color:var(--cp-text);font-size:clamp(2rem,4.3vw,4.1rem);line-height:.98;letter-spacing:-.045em; }
.cp-nis2-timeline .cp-lead { max-width:760px;margin:1.1rem 0 0;color:var(--cp-muted);font-size:clamp(1rem,1.3vw,1.12rem);line-height:1.65; }
.cp-nis2-timeline .cp-urgency { padding:1.25rem;border:1px solid var(--cp-border);border-radius:1.1rem;background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035)); }
.cp-nis2-timeline .cp-urgency-label { margin:0 0 .5rem;color:var(--cp-muted);font-size:.76rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase; }
.cp-nis2-timeline .cp-urgency-value { display:flex;align-items:baseline;gap:.55rem;margin:0;font-size:clamp(2.5rem,5vw,4.4rem);font-weight:850;line-height:.9;letter-spacing:-.06em; }
.cp-nis2-timeline .cp-urgency-value span { color:var(--cp-warning); }
.cp-nis2-timeline .cp-urgency-value small { color:var(--cp-text);font-size:.9rem;font-weight:750;letter-spacing:0; }
.cp-nis2-timeline .cp-urgency-meta { margin:.75rem 0 0;color:var(--cp-muted);font-size:.86rem;line-height:1.5; }
.cp-nis2-timeline .cp-urgency-meta strong { color:var(--cp-text); }
.cp-nis2-timeline .cp-countdown { position:relative;padding:1.5rem;border:1px solid var(--cp-border);border-radius:1.25rem;background:rgba(3,10,18,.48); }
.cp-nis2-timeline .cp-countdown-head { display:flex;align-items:flex-end;justify-content:space-between;gap:1.25rem;margin-bottom:1.6rem; }
.cp-nis2-timeline .cp-countdown-title { margin:0;color:var(--cp-text);font-size:1rem; }
.cp-nis2-timeline .cp-countdown-sub { margin:.3rem 0 0;color:var(--cp-muted);font-size:.86rem; }
.cp-nis2-timeline .cp-progress-number { flex:0 0 auto;margin:0;color:var(--cp-text);font-size:1rem;font-weight:800; }
.cp-nis2-timeline .cp-progress-number strong { color:var(--cp-cyan);font-size:1.45rem; }
.cp-nis2-timeline .cp-progress-shell { position:relative;padding:3rem 0 2.25rem; }
.cp-nis2-timeline .cp-progress-track { position:relative;height:.75rem;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(255,255,255,.1); }
.cp-nis2-timeline .cp-progress-fill { position:absolute;inset:-1px auto -1px -1px;width:0;border-radius:inherit;background:linear-gradient(90deg,var(--cp-blue),var(--cp-cyan),var(--cp-warning));box-shadow:0 0 1.4rem rgba(41,213,229,.2);transition:width 1.25s cubic-bezier(.22,.75,.2,1); }
.cp-nis2-timeline .cp-today-marker { --marker-left:4%;position:absolute;z-index:4;top:3rem;left:var(--marker-left);width:2px;height:2.65rem;background:var(--cp-text);transform:translateX(-1px);transition:left 1.15s cubic-bezier(.22,.75,.2,1); }
.cp-nis2-timeline .cp-today-marker::after { position:absolute;top:-.25rem;left:50%;width:.75rem;height:.75rem;border-radius:50%;background:var(--cp-text);box-shadow:0 0 0 .3rem rgba(255,255,255,.12),0 0 1.5rem rgba(255,255,255,.35);content:"";transform:translate(-50%,-50%); }
.cp-nis2-timeline .cp-today-badge { --marker-left:4%;position:absolute;z-index:5;top:0;left:var(--marker-left);min-width:max-content;padding:.5rem .65rem;border-radius:.5rem;color:#06101c;background:var(--cp-text);box-shadow:0 .5rem 1.5rem rgba(0,0,0,.22);font-size:.74rem;font-weight:850;text-align:center;transform:translateX(-50%);transition:left 1.15s cubic-bezier(.22,.75,.2,1); }
.cp-nis2-timeline .cp-today-badge::after { position:absolute;bottom:-.3rem;left:50%;width:.6rem;height:.6rem;background:inherit;content:"";transform:translateX(-50%) rotate(45deg); }
.cp-nis2-timeline .cp-scale { display:flex;justify-content:space-between;margin-top:.8rem;color:var(--cp-muted);font-size:.74rem;font-weight:700; }
.cp-nis2-timeline .cp-scale span:nth-child(2) { text-align:center; }
.cp-nis2-timeline .cp-scale span:last-child { text-align:right; }
.cp-nis2-timeline .cp-scale strong { color:var(--cp-text); }
.cp-nis2-timeline .cp-progress-foot { display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-top:1.1rem; }
.cp-nis2-timeline .cp-stat { padding:.9rem;border:1px solid rgba(255,255,255,.08);border-radius:.75rem;background:var(--cp-card); }
.cp-nis2-timeline .cp-stat span { display:block;margin-bottom:.25rem;color:var(--cp-muted);font-size:.7rem;font-weight:750;letter-spacing:.05em;text-transform:uppercase; }
.cp-nis2-timeline .cp-stat strong { color:var(--cp-text);font-size:1.04rem; }
.cp-nis2-timeline .cp-stat-alert strong { color:var(--cp-warning); }
.cp-nis2-timeline .cp-history { margin-top:2rem; }
.cp-nis2-timeline .cp-history-head { display:flex;align-items:end;justify-content:space-between;gap:1.25rem;margin-bottom:1.1rem; }
.cp-nis2-timeline .cp-history-head h3 { margin:0;color:var(--cp-text);font-size:1.15rem;letter-spacing:-.02em; }
.cp-nis2-timeline .cp-history-head p { display:none;margin:0;color:var(--cp-muted);font-size:.82rem; }
.cp-nis2-timeline .cp-events { display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:.75rem; }
.cp-nis2-timeline .cp-event { min-height:172px;padding:1.1rem 1rem;border:1px solid rgba(255,255,255,.09);border-radius:.9rem;background:var(--cp-card); }
.cp-nis2-timeline .cp-event.is-key { border-color:rgba(41,213,229,.34);background:linear-gradient(180deg,rgba(41,213,229,.1),rgba(255,255,255,.045)); }
.cp-nis2-timeline .cp-event.is-deadline { border-color:rgba(246,183,60,.43);background:linear-gradient(180deg,rgba(246,183,60,.1),rgba(255,255,255,.045)); }
.cp-nis2-timeline .cp-event-date { margin:0 0 .75rem;color:var(--cp-cyan);font-size:.74rem;font-weight:850;letter-spacing:.045em;text-transform:uppercase; }
.cp-nis2-timeline .is-deadline .cp-event-date { color:var(--cp-warning); }
.cp-nis2-timeline .cp-event h4 { margin:0 0 .5rem;color:var(--cp-text);font-size:.95rem;line-height:1.3; }
.cp-nis2-timeline .cp-event p:last-child { margin:0;color:var(--cp-muted);font-size:.78rem;line-height:1.5; }
.cp-nis2-timeline .cp-actions { display:flex;flex-wrap:wrap;align-items:center;gap:.65rem;margin-top:1.75rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.09); }
.cp-nis2-timeline .cp-btn { display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.7rem 1rem;border:1px solid var(--cp-cyan);border-radius:.65rem;color:#06101c;background:var(--cp-cyan);font-size:.88rem;font-weight:800;text-decoration:none;transition:transform .18s ease,filter .18s ease,border-color .18s ease; }
.cp-nis2-timeline .cp-btn:hover,.cp-nis2-timeline .cp-btn:focus-visible { filter:brightness(1.06);transform:translateY(-1px); }
.cp-nis2-timeline .cp-btn-secondary { border-color:rgba(255,255,255,.22);color:var(--cp-text);background:transparent; }
.cp-nis2-timeline .cp-legal-note { flex:1 1 360px;margin:0 0 0 auto;color:var(--cp-muted);font-size:.72rem;line-height:1.5;text-align:right; }
.cp-nis2-timeline .cp-legal-note a { color:#d8e4ed;text-underline-offset:.2rem; }
.cp-nis2-timeline.is-expired .cp-urgency-value span,.cp-nis2-timeline.is-expired .cp-stat-alert strong { color:var(--cp-danger); }
.cp-nis2-timeline.is-expired .cp-progress-fill { background:linear-gradient(90deg,var(--cp-blue),var(--cp-cyan),var(--cp-danger)); }

/* Homepage — ponte clara entre prazo e preparação */
.cp-deadline-context { background:#edf3f6; }
.cp-deadline-context-layout { display:grid;grid-template-columns:minmax(0,1.02fr) minmax(360px,.98fr);gap:clamp(2.5rem,7vw,6.5rem);align-items:center; }
.cp-deadline-context-copy h2 { max-width:720px;margin:.5rem 0 1rem;font-size:clamp(2.2rem,4.5vw,4.15rem);line-height:1.04;letter-spacing:-.045em; }
.cp-deadline-context-lead { max-width:700px;margin:0;color:var(--muted);font-size:1.06rem;line-height:1.75; }
.cp-deadline-context-steps { display:grid;gap:0;margin:2rem 0 0;padding:0;border-top:1px solid #cfdbe3;list-style:none; }
.cp-deadline-context-steps li { display:grid;grid-template-columns:2.5rem 1fr;gap:1rem;padding:1rem 0;border-bottom:1px solid #cfdbe3; }
.cp-deadline-context-steps li>span { color:#0d7183;font-size:.72rem;font-weight:850;letter-spacing:.08em; }
.cp-deadline-context-steps strong { display:block;font-size:1rem; }
.cp-deadline-context-steps p { margin:.2rem 0 0;color:var(--muted);font-size:.88rem;line-height:1.55; }
.cp-deadline-context .actions { align-items:center;margin-top:1.6rem; }
.cp-deadline-context .button-dark { color:#fff;background:var(--ink); }
.cp-text-link { color:#0d7183;font-size:.86rem;font-weight:800;text-decoration:none; }
.cp-text-link:hover,.cp-text-link:focus-visible { color:var(--ink); }
.cp-deadline-context-visual { position:relative;margin:0;overflow:hidden;border:1px solid #cbd8e1;border-radius:var(--radius);background:var(--ink);box-shadow:var(--shadow); }
.cp-deadline-context-visual img { width:100%;aspect-ratio:16/9;object-fit:cover; }
.cp-deadline-context-visual figcaption { display:grid;gap:.2rem;padding:1rem 1.15rem;color:#d6e3eb;background:var(--ink); }
.cp-deadline-context-visual figcaption strong { color:#fff;font-size:.95rem; }
.cp-deadline-context-visual figcaption span { font-size:.8rem;line-height:1.5; }

@media (max-width:1050px) {
    .cp-nis2-timeline .cp-history-head { align-items:flex-start;flex-direction:column; }
    .cp-nis2-timeline .cp-history-head p { display:block; }
    .cp-nis2-timeline .cp-events { grid-template-columns:repeat(7,minmax(210px,78vw));overflow-x:auto;padding:.2rem .15rem .7rem;scroll-snap-type:x proximity;scrollbar-color:rgba(255,255,255,.22) transparent;scrollbar-width:thin; }
    .cp-nis2-timeline .cp-event { scroll-snap-align:start; }
}
@media (max-width:850px) {
    .cp-nis2-timeline .cp-top,.cp-deadline-context-layout { grid-template-columns:1fr; }
    .cp-nis2-timeline .cp-countdown-head { align-items:flex-start;flex-direction:column; }
    .cp-nis2-timeline .cp-progress-foot { grid-template-columns:1fr; }
    .cp-nis2-timeline .cp-legal-note { flex-basis:100%;margin-left:0;text-align:left; }
    .cp-deadline-context-visual { max-width:720px; }
}
@media (max-width:520px) {
    .cp-nis2-timeline h2 { font-size:clamp(2rem,11vw,3rem); }
    .cp-nis2-timeline .cp-countdown { padding:1.1rem .85rem; }
    .cp-nis2-timeline .cp-today-badge { font-size:.66rem; }
    .cp-nis2-timeline .cp-scale { font-size:.66rem; }
    .cp-nis2-timeline .cp-actions,.cp-deadline-context .actions { display:grid; }
    .cp-nis2-timeline .cp-btn,.cp-deadline-context .button { width:100%; }
}
@media (prefers-reduced-motion:reduce) {
    .cp-nis2-timeline .cp-eyebrow::after { display:none;animation:none; }
}
