:root {
    --primary: #0b3b75;
    --primary-2: #0f5ea8;
    --primary-3: #082a52;
    --accent: #f4a261;
    --accent-dark: #d97d2f;
    --ink: #182231;
    --muted: #5d6877;
    --line: #dfe5ec;
    --soft: #f4f7fb;
    --card: #ffffff;
    --success: #0f766e;
    --deep: #0d1f36;
    --danger: #9a3412;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 18px rgba(13, 31, 54, 0.07);
    --shadow: 0 18px 50px rgba(13, 31, 54, 0.12);
    --container: 1220px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

code {
    padding: 0.15em 0.4em;
    border-radius: 6px;
    background: #eef2f7;
    color: #243244;
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 10px 14px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 800;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-top: 4px solid var(--primary-2);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-row {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 270px;
    color: var(--ink);
    text-decoration: none;
}

.brand:hover {
    text-decoration: none;
}

.brand img {
    width: min(250px, 30vw);
    max-height: 70px;
    object-fit: contain;
}

.brand-copy {
    display: none;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    color: var(--primary);
    font-size: 1.12rem;
}

.brand-copy small {
    max-width: 280px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

.primary-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.primary-nav a {
    padding: 9px 10px;
    border-radius: 999px;
    color: #17202d;
    font-size: 0.91rem;
    font-weight: 750;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    background: #edf4fb;
    color: var(--primary);
    text-decoration: none;
}

.primary-nav .nav-submit {
    margin-left: 4px;
    padding-inline: 17px;
    background: var(--primary);
    color: #ffffff;
}

.primary-nav .nav-submit:hover,
.primary-nav .nav-submit:focus-visible {
    background: var(--primary-2);
    color: #ffffff;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle-lines {
    display: grid;
    gap: 4px;
}

.menu-toggle-lines i {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--primary);
}

.menu-toggle-text {
    font-size: 0.85rem;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 87% 12%, rgba(244, 162, 97, 0.3), transparent 28%),
        radial-gradient(circle at 12% 90%, rgba(44, 149, 207, 0.25), transparent 32%),
        linear-gradient(135deg, var(--primary-3), var(--primary-2));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #ffd29f, var(--accent));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 52px;
    align-items: center;
    padding-block: 56px 62px;
}

.cover-wrap {
    margin: 0;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);
}

.journal-cover {
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
    aspect-ratio: 3 / 4;
    object-fit: contain;
}

.eyebrow {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--primary-2);
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-publisher {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    font-weight: 700;
}

.hero-summary {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.hero-tags span {
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 850;
}

.hero-actions,
.submission-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.button:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.button-accent {
    background: var(--accent);
    color: #1f2937;
    box-shadow: 0 12px 28px rgba(244, 162, 97, 0.26);
}

.button-accent:hover {
    background: #ffb46f;
    color: #111827;
}

.button-light {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.button-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.button-primary {
    background: var(--primary);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--primary-2);
    color: #ffffff;
}

.button-muted {
    border-color: #cfd8e3;
    background: #ffffff;
    color: var(--ink);
}

.button-outline {
    border-color: #b8c8da;
    background: transparent;
    color: var(--primary);
}

.button-outline:hover {
    border-color: var(--primary);
    background: #edf4fb;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    margin: 31px 0 0;
}

.hero-facts div {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.09);
}

.hero-facts dt {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 0.87rem;
    font-weight: 780;
    line-height: 1.4;
}

.section-tabs {
    position: sticky;
    top: var(--header-height);
    z-index: 900;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(13, 31, 54, 0.04);
    backdrop-filter: blur(12px);
}

.section-tabs-row {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
}

.section-tabs a {
    flex: 0 0 auto;
    padding: 15px 14px 12px;
    border-bottom: 3px solid transparent;
    color: #39475a;
    font-size: 0.85rem;
    font-weight: 850;
    white-space: nowrap;
}

.section-tabs a:hover,
.section-tabs a:focus-visible {
    border-color: var(--accent);
    color: var(--primary);
    text-decoration: none;
}

.search-strip {
    border-bottom: 1px solid var(--line);
    background: #f7f9fc;
}

.search-row {
    padding-block: 18px;
}

.journal-search {
    display: grid;
    gap: 8px;
}

.journal-search > label {
    color: #344154;
    font-size: 0.8rem;
    font-weight: 850;
}

.search-control {
    display: flex;
    gap: 9px;
}

.search-control input {
    flex: 1;
    min-width: 0;
    padding: 11px 15px;
    border: 1px solid #bdc8d5;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    outline: none;
}

.search-control input:focus {
    border-color: var(--primary-2);
    box-shadow: 0 0 0 4px rgba(15, 94, 168, 0.12);
}

.search-status {
    min-height: 1.2em;
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.section {
    padding-block: 78px;
}

.section-soft {
    background: var(--soft);
}

.section-deep {
    color: #e9f0f8;
    background:
        radial-gradient(circle at 90% 5%, rgba(15, 94, 168, 0.25), transparent 27%),
        linear-gradient(145deg, var(--deep), #122d4e);
}

.section-heading {
    max-width: 880px;
    margin-bottom: 30px;
}

.section-heading.compact {
    max-width: 980px;
}

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading.light p:not(.eyebrow) {
    color: #c4d2e1;
}

.split-heading {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.split-heading > div {
    max-width: 820px;
}

.content-grid {
    display: grid;
    gap: 20px;
}

.content-grid.two-thirds {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
}

.panel,
.issue-card,
.contact-card,
.index-card,
.type-card,
.person-card,
.criteria-panel,
.objectives-panel,
.download-panel,
.submission-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

.panel {
    padding: 28px;
}

.panel h3,
.objectives-panel h3,
.criteria-panel h3,
.download-panel h3,
.submission-panel h2,
.contact-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.panel p:last-child,
.contact-card p:last-child {
    margin-bottom: 0;
}

.highlight-panel {
    border-color: #c8d9eb;
    background: linear-gradient(180deg, #ffffff, #f4f8fc);
}

.fact-list {
    margin: 0;
}

.fact-list div {
    padding-block: 10px;
    border-top: 1px solid #e8edf3;
}

.fact-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.fact-list dt {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fact-list dd {
    margin: 3px 0 0;
    color: #1f2937;
    font-weight: 700;
}

.objectives-panel {
    margin-top: 20px;
    padding: 28px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li + li {
    margin-top: 9px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: #def5ec;
    color: #08735d;
    font-size: 0.72rem;
    font-weight: 950;
}

.columns-2 {
    columns: 2;
    column-gap: 40px;
}

.columns-2 li {
    break-inside: avoid;
    margin-bottom: 10px;
}

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

.scope-card {
    position: relative;
    min-height: 135px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #dce5ee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.scope-card span {
    position: absolute;
    right: 15px;
    top: 6px;
    color: #e9eef4;
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
}

.scope-card h3 {
    position: relative;
    z-index: 1;
    margin: 39px 0 0;
    color: #213044;
    font-size: 1rem;
    line-height: 1.45;
}

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

.issue-card {
    padding: 25px;
}

.issue-card.current {
    border-color: #f3c187;
    background: linear-gradient(180deg, #fffaf3, #ffffff);
}

.issue-card h3 {
    margin: 13px 0 8px;
    color: #18263a;
    font-size: 1.22rem;
}

.issue-card p {
    color: var(--muted);
}

.issue-card dl {
    margin: 18px 0 0;
}

.issue-card dl div {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid #edf0f4;
}

.issue-card dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.issue-card dd {
    margin: 0;
    font-weight: 700;
}

.status-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff0d9;
    color: #9a4d08;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge.neutral {
    background: #eaf1f8;
    color: var(--primary);
}

.small-note {
    font-size: 0.85rem;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
}

.board-group + .board-group {
    margin-top: 38px;
}

.board-group > h3 {
    margin: 0 0 15px;
    color: var(--primary);
    font-size: 1.35rem;
}

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

.person-card {
    padding: 21px;
}

.person-role {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--primary-2);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.person-card h4 {
    margin: 0;
    color: #172234;
    font-size: 1rem;
}

.person-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.orcid-link {
    display: inline-flex;
    margin-top: 11px;
    font-size: 0.8rem;
    font-weight: 800;
}

.policy-details {
    overflow: hidden;
    border: 1px solid #d9e2ec;
    border-radius: 15px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.board-group + .policy-details,
.section-soft .policy-details {
    margin-top: 26px;
}

.policy-details summary {
    position: relative;
    padding: 19px 54px 19px 20px;
    color: #17304f;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.policy-details summary::-webkit-details-marker {
    display: none;
}

.policy-details summary::after {
    content: "+";
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.policy-details[open] summary::after {
    content: "−";
}

.policy-details[open] summary {
    border-bottom: 1px solid #e7edf3;
    background: #f7fafd;
}

.details-body {
    padding: 22px;
}

.details-body > :first-child {
    margin-top: 0;
}

.details-body > :last-child {
    margin-bottom: 0;
}

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

.responsibility-grid article {
    padding: 18px;
    border: 1px solid #e1e7ee;
    border-radius: 13px;
    background: #fbfcfe;
}

.responsibility-grid h4 {
    margin: 0 0 8px;
    color: var(--primary);
}

.responsibility-grid ul {
    margin-bottom: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.summary-grid article {
    padding: 17px;
    border: 1px solid #dce4ec;
    border-radius: 14px;
    background: #f8fbff;
}

.summary-grid strong,
.summary-grid span {
    display: block;
}

.summary-grid strong {
    color: var(--primary);
    font-size: 0.8rem;
}

.summary-grid span {
    margin-top: 4px;
    color: #344154;
    font-size: 0.9rem;
    font-weight: 700;
}

.guideline-block {
    margin-bottom: 34px;
}

.guideline-block > h3 {
    color: var(--primary);
    font-size: 1.55rem;
}

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

.type-card {
    padding: 21px;
}

.type-card h4 {
    margin: 0 0 8px;
    color: #172234;
    font-size: 1.05rem;
}

.type-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.type-card ul {
    margin: 14px 0 0;
    padding: 13px 0 0 18px;
    border-top: 1px dashed #dce3eb;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 700;
}

.guideline-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.guideline-nav {
    position: sticky;
    top: 156px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.guideline-nav strong {
    padding: 2px 8px 9px;
    color: var(--primary);
}

.guideline-nav a {
    padding: 7px 8px;
    border-radius: 8px;
    color: #3c4859;
    font-size: 0.84rem;
    font-weight: 700;
}

.guideline-nav a:hover {
    background: #edf4fb;
    color: var(--primary);
    text-decoration: none;
}

.guideline-content {
    min-width: 0;
}

.guideline-article {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.guideline-article + .guideline-article {
    margin-top: 16px;
}

.guideline-article h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 1.35rem;
}

.guideline-article h4 {
    color: #223047;
}

.guideline-article > :last-child {
    margin-bottom: 0;
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.two-column-list > div {
    padding: 17px;
    border: 1px solid #e0e7ef;
    border-radius: 13px;
    background: #f8fafc;
}

.two-column-list h4 {
    margin-top: 0;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid #dce3eb;
    border-radius: 13px;
}

table {
    width: 100%;
    min-width: 580px;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5eaf0;
    text-align: left;
    vertical-align: top;
}

th {
    width: 31%;
    background: #f1f5f9;
    color: var(--primary);
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

.reference-example {
    padding: 15px;
    border-left: 4px solid var(--accent);
    border-radius: 0 10px 10px 0;
    background: #fff8ef;
}

.reference-example p {
    margin-bottom: 0;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, #f7faff, #ffffff);
}

.download-panel h3 {
    margin-bottom: 6px;
}

.download-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

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

.download-grid a {
    padding: 11px 13px;
    border: 1px solid #cedae7;
    border-radius: 10px;
    background: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
}

.download-grid a:hover {
    border-color: var(--primary-2);
    background: #eef6fd;
    text-decoration: none;
}

.download-pending {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 13px;
    border: 1px dashed #cbd5df;
    border-radius: 10px;
    background: #f7f9fb;
    color: #596677;
    font-size: 0.86rem;
    font-weight: 800;
}

.download-pending small {
    color: #7b8795;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
}

.process-grid {
    counter-reset: review;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    padding: 0;
    list-style: none;
}

.process-grid li {
    position: relative;
    min-height: 180px;
    padding: 24px 22px 22px 74px;
    border: 1px solid #dce4ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.process-grid li > span {
    position: absolute;
    left: 20px;
    top: 22px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
}

.process-grid h3 {
    margin: 0 0 7px;
    color: #1a2a40;
    font-size: 1.03rem;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.criteria-panel {
    margin-top: 24px;
    padding: 27px;
}

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

.reviewer-grid .panel ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.policy-stack {
    display: grid;
    gap: 12px;
}

.section-deep .policy-details {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

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

.index-card {
    min-height: 145px;
    padding: 22px;
}

.index-card h3 {
    margin: 0 0 20px;
    color: #1a2940;
    font-size: 1rem;
}

.index-card span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf3f9;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 850;
}

.submission-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 36px;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff, #f4f8fc);
}

.submission-panel h2 {
    margin-bottom: 10px;
}

.submission-panel > div > p:not(.eyebrow) {
    color: var(--muted);
}

.submission-panel aside {
    padding: 22px;
    border: 1px solid #dbe5ef;
    border-radius: 15px;
    background: #ffffff;
}

.submission-panel aside h3 {
    margin-top: 0;
    color: var(--primary);
}

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

.contact-card {
    padding: 25px;
}

.compact-facts div {
    padding-block: 7px;
}

.link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-list li + li {
    margin-top: 8px;
}

.link-list a {
    font-weight: 750;
}

.site-footer {
    color: #dce7f3;
    background: #0a1a2e;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-block: 38px;
}

.footer-grid strong {
    color: #ffffff;
    font-size: 1.02rem;
}

.footer-grid p {
    margin: 5px 0 0;
    color: #adbed0;
    font-size: 0.86rem;
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 9px 16px;
}

.footer-grid nav a {
    color: #e3edf7;
    font-size: 0.86rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: #91a7bc;
    font-size: 0.78rem;
}

.back-to-top {
    position: fixed;
    right: 19px;
    bottom: 19px;
    z-index: 950;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[data-searchable].search-hidden {
    display: none !important;
}

[data-searchable].search-hit {
    outline: 3px solid rgba(244, 162, 97, 0.38);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .primary-nav a {
        padding-inline: 7px;
        font-size: 0.82rem;
    }

    .hero-grid {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 36px;
    }

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

    .scope-grid,
    .board-grid,
    .type-grid,
    .reviewer-grid,
    .indexing-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .header-row {
        min-height: var(--header-height);
    }

    .brand img {
        width: 210px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        padding: 18px;
        border-top: 1px solid var(--line);
        background: #ffffff;
        box-shadow: var(--shadow);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .primary-nav a,
    .primary-nav .nav-submit {
        margin: 0;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .hero-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        padding-block: 45px 52px;
    }

    .content-grid.two-thirds,
    .submission-panel {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        grid-template-columns: 1fr;
    }

    .guideline-layout {
        grid-template-columns: 1fr;
    }

    .guideline-nav {
        position: static;
        display: flex;
        overflow-x: auto;
    }

    .guideline-nav strong,
    .guideline-nav a {
        flex: 0 0 auto;
    }

    .download-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand img {
        width: 170px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cover-wrap {
        width: min(230px, 72vw);
    }

    .hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.7rem);
    }

    .section {
        padding-block: 58px;
    }

    .section-heading h2 {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
    }

    .split-heading,
    .footer-grid,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .scope-grid,
    .board-grid,
    .type-grid,
    .reviewer-grid,
    .indexing-grid,
    .contact-grid,
    .summary-grid,
    .process-grid,
    .responsibility-grid,
    .two-column-list {
        grid-template-columns: 1fr;
    }

    .columns-2 {
        columns: 1;
    }

    .search-control {
        flex-wrap: wrap;
    }

    .search-control input {
        flex-basis: 100%;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid nav {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .brand img {
        width: 145px;
    }

    .menu-toggle-text {
        display: none;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .submission-actions .button,
    .search-control .button {
        width: 100%;
    }

    .panel,
    .guideline-article,
    .objectives-panel,
    .criteria-panel,
    .download-panel,
    .submission-panel,
    .contact-card,
    .issue-card {
        padding: 21px;
    }

    th,
    td {
        display: block;
        width: 100%;
    }

    th {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
