:root {
    --bg-center: #2C323A;
    --bg-mid: #252C33;
    --bg-outer: #1D232B;
    --text-heading: #F2F3F5;
    --text-body: #E8ECF0;
    --text-muted: rgba(232, 236, 240, 0.74);
    --primary: #6A0F2C;
    --primary-hover: #7D1B3B;
    --link: #8ED8FF;
    --link-hover: #BFEAFF;
    --primary-soft: rgba(106, 15, 44, 0.18);
    --surface: rgba(242, 245, 248, 0.04);
    --surface-strong: rgba(242, 245, 248, 0.08);
    --surface-soft: rgba(242, 245, 248, 0.03);
    --border: rgba(232, 236, 240, 0.13);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 50px;
    --radius-pill: 999px;
    --radius-card: 16px;
    --radius-soft: 22px;
    --font-main: "Source Sans 3", sans-serif;
    --font-heading: "EB Garamond", serif;
    --container: min(1200px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-body);
    background:
        radial-gradient(circle at top center, var(--bg-center), var(--bg-mid), var(--bg-outer));
    background-color: var(--bg-outer);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

body::before {
    display: none;
}

.page-glow {
    display: none;
}

.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-main {
    flex: 1;
}

.site-header {
    padding: 0.9rem 0;
    width: 100%;
    position: relative;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

.container,
.header-inner,
.footer-inner,
.section-inner,
.hero-shell {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--text-heading);
    text-decoration: none;
    line-height: 1;
    margin-left: clamp(24px, 4vw, 56px);
}

.brand-logo {
    height: 76px;
    width: auto;
    display: block;
    transform: translateY(6px);
}

.brand-context {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    transition: all 0.2s;
}

.site-nav .btn-primary {
    padding: 0.8rem 2rem;
    color: #fff;
    margin-left: 0.25rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    opacity: 1;
    color: white;
}

.site-nav a.is-active {
    opacity: 1;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible,
.site-nav .btn-primary.active {
    background: var(--primary-hover);
    color: #fff;
    opacity: 1;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 3px;
}

.hero-shell {
    padding: 58px 0 24px;
}

.hero-card,
.page-hero,
.section-card,
.cta-band,
.metric-card,
.resource-card,
.role-card,
.detail-card,
.faq-card,
.feature-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: none;
}

.hero-card,
.page-hero {
    padding: 1.6rem 1.5rem;
}

.hero-card::before,
.page-hero::before,
.section-heading::before {
    display: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--text-heading);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.8rem);
    line-height: 1.12;
}

.page-hero h1 {
    font-size: clamp(2.9rem, 6vw, 4.8rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
}

h3 {
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    line-height: 1.08;
}

.lead,
.page-hero p,
.section-copy,
.feature-card p,
.role-card p,
.resource-card p,
.detail-card p,
.faq-card p,
li,
td,
th,
input,
textarea,
label {
    font-size: 1.04rem;
    line-height: 1.62;
}

.lead {
    max-width: 45rem;
    margin: 24px 0 0;
}

.hero-actions,
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid var(--text-heading);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(242, 245, 248, 0.09);
    transform: translateY(-2px);
}

.hero-grid,
.card-grid,
.feature-grid,
.stats-grid,
.role-grid,
.resource-grid,
.detail-grid,
.split-grid,
.footer-grid,
.index-grid {
    display: grid;
    gap: 18px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
}

.metric-card {
    padding: 22px;
}

.metric-value {
    display: block;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 0.95;
}

.metric-label {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-side-panel,
.resource-card,
.role-card,
.feature-card,
.detail-card,
.faq-card {
    padding: 24px;
}

.hero-side-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--surface);
}

.mini-label,
.card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: rgba(242, 245, 248, 0.08);
    color: var(--text-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-side-panel ul,
.feature-list,
.check-list,
.plain-list {
    margin: 18px 0 0;
    padding-left: 18px;
}

.section-block {
    padding: 22px 0;
}

.section-inner {
    display: grid;
    gap: 22px;
}

.section-heading {
    max-width: 48rem;
}

.section-heading::before {
    margin-bottom: 18px;
}

.section-card {
    padding: 1.6rem 1.5rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-grid,
.resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: rgba(242, 245, 248, 0.04);
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 600;
}

.pill.is-highlight {
    background: var(--primary-soft);
    border-color: rgba(106, 15, 44, 0.45);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.table-shell {
    overflow-x: auto;
    border-radius: 18px;
}

.link-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-tile {
    display: block;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(18, 23, 30, 0.46);
    color: var(--text-body);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.link-tile:hover,
.link-tile:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(106, 15, 44, 0.45);
    background: rgba(18, 23, 30, 0.62);
}

.link-tile h3 {
    margin-top: 14px;
}

.link-tile p {
    margin: 10px 0 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--text-heading);
    font-weight: 700;
}

.catalog-controls {
    display: grid;
    gap: 18px;
}

.search-field {
    max-width: 36rem;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(242, 245, 248, 0.04);
    color: var(--text-heading);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
    background: rgba(242, 245, 248, 0.08);
    transform: translateY(-1px);
}

.filter-chip.is-active {
    background: var(--primary-soft);
    border-color: rgba(106, 15, 44, 0.45);
}

.table-meta {
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
}

.meta-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(232, 236, 240, 0.09);
}

.meta-item {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(232, 236, 240, 0.09);
}

.meta-item dt {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meta-item dd {
    margin: 0;
    color: var(--text-body);
}

.plain-stack {
    display: grid;
    gap: 14px;
}

.plain-stack p {
    margin: 0;
}

.subtle-link {
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
}

.subtle-link:hover,
.subtle-link:focus-visible {
    color: var(--text-heading);
    text-decoration: underline;
}

.compliance-header {
    max-width: 700px;
    margin: 0 auto;
    padding: 4.25rem 0 1.5rem;
    text-align: center;
}

.compliance-header h1 {
    font-size: clamp(3.2rem, 6.2vw, 4.8rem);
    line-height: 1.02;
}

.compliance-header .lead {
    margin: 1.5rem auto 0;
    max-width: 700px;
}

.editorial-page {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 72px;
}

.hero {
    padding: 5.5rem 0 2.5rem;
    text-align: center;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.8rem);
    line-height: 1.12;
    font-weight: 600;
    margin-bottom: 1.25rem;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.004em;
}

.hero p {
    font-size: 1.2rem;
    max-width: 820px;
    margin: 0 auto 1rem;
    opacity: 0.97;
    font-family: var(--font-main);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-subheadline {
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    max-width: 62ch;
    line-height: 1.5;
    font-family: var(--font-main);
    font-weight: 500;
}

.hero-cta {
    margin-top: 1.6rem;
}

.hero.hero--top-focus {
    display: block;
    min-height: calc(100vh - 210px);
    padding: 2.1rem 0 1.2rem;
    text-align: center;
}

.hero-content--top-focus {
    max-width: 780px;
    text-align: center;
}

.hero--top-focus .hero-title {
    margin: 0 auto 28px;
    font-size: clamp(58px, 6.4vw, 68px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.014em;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero--top-focus .hero-line {
    display: block;
    white-space: normal;
    text-align: center;
}

.hero--top-focus .hero-subheadline {
    max-width: 800px;
    line-height: 1.35;
    opacity: 0.97;
    margin: 0 auto;
}

.hero--top-focus .hero-subheadline--minor {
    margin-bottom: 36px;
    font-size: clamp(22px, 2.4vw, 24px);
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.95;
}

.hero--top-focus .hero-subheadline--major {
    margin-bottom: 0;
    font-size: clamp(16px, 1.75vw, 18px);
    line-height: 1.65;
    font-weight: 400;
    opacity: 0.9;
}

.hero--top-focus .hero-subline {
    display: inline-block;
}

.hero--top-focus .hero-cta {
    margin-top: 0;
    gap: 0.72rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero--top-focus .hero-cta a {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}

.hero--top-focus .hero-cta .btn-secondary {
    opacity: 0.85;
}

.hub-grid.home-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 2rem;
    padding: 0;
}

.home-pillars-grid .hub-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.6rem 1.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.home-pillars-grid .hub-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-pillars-grid .hub-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.home-pillars-grid .hub-card p {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    opacity: 0.9;
    font-size: 0.98rem;
    font-weight: 400;
}

.home-pillars-grid .hub-card .card-arrow {
    color: var(--text-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.home-pillars-grid .hub-card:hover .card-arrow {
    gap: 0.8rem;
}

.hero--top-focus .hero-feature-list {
    list-style: none;
    margin: 0.55rem auto 0;
    padding: 0;
    max-width: 800px;
}

.hero--top-focus .hero-feature-list li {
    margin: 0.25rem 0;
    font-size: clamp(16px, 1.75vw, 18px);
    line-height: 1.55;
    font-weight: 400;
    color: var(--text-body);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content-narrow {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: left;
}

.bts-detail-page {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.bts-detail-section {
    padding: 1.45rem 0 1.65rem;
    border-top: 1px solid rgba(232, 236, 240, 0.09);
}

.bts-detail-section:first-child {
    padding-top: 0;
    border-top: none;
}

.bts-detail-section:last-child {
    padding-bottom: 0;
}

.bts-detail-section h3 {
    margin-bottom: 1rem;
}

.bts-detail-section p:last-child {
    margin-bottom: 0;
}

.bts-detail-section .check-list,
.bts-detail-section .plain-list {
    margin-top: 0.75rem;
}

.bts-detail-section .btn-primary {
    margin-top: 0.4rem;
}

.infra-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.6rem 1.5rem;
    margin-bottom: 1.8rem;
}

.infra-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.infra-card p:last-child {
    margin-bottom: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem 0;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    max-width: 34rem;
    font-size: 1.08rem;
    opacity: 0.95;
}

.contact-form {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-heading);
}

.form-group-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.form-status.is-success {
    color: #8fd2ff;
}

.form-status.is-error {
    color: #ffb4c5;
}

.full-width {
    width: 100%;
}

.editorial-hero {
    padding-bottom: 28px;
}

.editorial-hero::before {
    display: none;
}

.editorial-body {
    border-top: 1px solid rgba(232, 236, 240, 0.12);
}

.editorial-section {
    padding: 26px 0 30px;
    border-bottom: 1px solid rgba(232, 236, 240, 0.08);
}

.editorial-section h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.editorial-section p + p {
    margin-top: 14px;
}

.copy-flow {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-width: 52rem;
}

.copy-flow h3 {
    margin-top: 10px;
}

.copy-flow p {
    margin: 0;
}

.compact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.data-table th,
.data-table td {
    padding: 16px 18px;
    vertical-align: top;
    border-bottom: 1px solid rgba(232, 236, 240, 0.09);
}

.data-table th {
    color: var(--text-heading);
    text-align: left;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(242, 245, 248, 0.06);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr[data-row-href] {
    cursor: pointer;
    transition: background-color 0.18s ease;
}

.data-table tbody tr[data-row-href]:hover {
    background: rgba(242, 245, 248, 0.035);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-badge.is-ccf {
    background: rgba(30, 108, 75, 0.28);
    color: #d5f8e8;
}

.status-badge.is-ponctuelle {
    background: rgba(92, 88, 180, 0.28);
    color: #e0ddff;
}

.status-badge.is-review {
    background: rgba(188, 128, 28, 0.28);
    color: #ffe7b2;
}

.cta-band {
    padding: 28px;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.timeline,
.process-steps {
    display: grid;
    gap: 16px;
}

.timeline-item,
.process-step {
    position: relative;
    padding: 18px 20px 18px 68px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-soft);
}

.timeline-item::before,
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.site-footer {
    padding: 28px 0 40px;
}

.home-site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links a {
    margin-left: 1.5rem;
    opacity: 0.8;
}

.social-links a:first-child {
    margin-left: 0;
}

.social-links a:hover,
.social-links a:focus-visible {
    opacity: 1;
}

.footer-inner {
    padding-top: 22px;
    border-top: 1px solid rgba(232, 236, 240, 0.09);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
}

.footer-col p,
.footer-note {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-note {
    margin-top: 22px;
    font-size: 0.92rem;
}

form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 8px;
    color: var(--text-heading);
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(232, 236, 240, 0.14);
    border-radius: 18px;
    background: rgba(18, 23, 30, 0.62);
    color: var(--text-body);
    padding: 14px 16px;
    font-family: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.note-box,
.highlight-box {
    padding: 20px 22px;
    border: 1px solid rgba(106, 15, 44, 0.45);
    border-radius: 20px;
    background: rgba(106, 15, 44, 0.12);
}

.inline-link,
.text-link {
    color: var(--link);
    font-weight: 700;
    text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--link-hover);
    text-decoration: underline;
}

main p a,
main li a,
main dd a,
main td a,
main th a,
.inline-link,
.text-link,
.footer-col a,
.footer-note a,
.social-links a {
    color: var(--link);
}

main p a:hover,
main p a:focus-visible,
main li a:hover,
main li a:focus-visible,
main dd a:hover,
main dd a:focus-visible,
main td a:hover,
main td a:focus-visible,
main th a:hover,
main th a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-note a:hover,
.footer-note a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
    color: var(--link-hover);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .cta-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .feature-grid,
    .link-grid,
    .signal-grid,
    .role-grid,
    .resource-grid,
    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero.hero--top-focus {
        min-height: auto;
        padding: 1.75rem 0 1.05rem;
    }

    .hero--top-focus .hero-title {
        font-size: clamp(2.35rem, 8.8vw, 3.35rem);
        margin-bottom: 24px;
    }

    .hero--top-focus .hero-subheadline--minor {
        font-size: clamp(1.25rem, 5.2vw, 1.5rem);
    }

    .hero--top-focus .hero-line {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .brand {
        margin-left: 0;
        gap: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-mid);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        margin-left: 0;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1.05rem;
    }

    .hero-buttons {
        gap: 0.85rem;
    }

    .stats-grid,
    .feature-grid,
    .link-grid,
    .signal-grid,
    .card-grid,
    .role-grid,
    .resource-grid,
    .detail-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .meta-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .editorial-page {
        padding-top: 32px;
    }

    .hero-card,
    .page-hero,
    .section-card,
    .cta-band,
    .metric-card,
    .resource-card,
    .role-card,
    .detail-card,
    .faq-card,
    .feature-card {
        border-radius: 24px;
        padding: 22px;
    }

    .data-table th,
    .data-table td {
        padding: 14px 12px;
    }

    .hero--top-focus .hero-cta a {
        width: 100%;
    }
}
