:root {
    --navy: #dceffc;
    --blue: #45a9ef;
    --cyan: #28c9c4;
    --muted: #a8c1d2;
    --line: rgba(120, 191, 231, .22);
    --home-content-width: 1180px;
    --home-visual-width: var(--home-content-width);
}

html {
    min-height: 100%;
    background: #07111f;
}

* {
    box-sizing: border-box;
}

img,
svg {
    display: block;
    max-width: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(53, 145, 178, .10), transparent 30%),
        radial-gradient(circle at 78% 8%, rgba(45, 98, 142, .10), transparent 34%),
        radial-gradient(circle at 50% 78%, rgba(24, 67, 102, .12), transparent 36%),
        linear-gradient(145deg, #071320, #0b1f33 58%, #07111f);
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
}

.portal {
    width: min(var(--home-content-width), calc(100% - 28px));
    margin: 0 auto;
    padding: 48px 0 12px;
}

.home-page .portal {
    --home-fit-enabled: 1;
    position: relative;
    display: block;
    width: min(var(--home-fit-width, var(--home-content-width)), calc(100% - 28px));
    padding-bottom: 0;
}

.portal-heading {
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
}

.portal-heading::after {
    content: "";
    width: 112px;
    height: 2px;
    margin-top: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(77, 203, 221, .92), transparent);
    box-shadow: 0 0 14px rgba(69, 169, 239, .34);
}

.portal-heading h1 {
    margin: 0;
    color: #eaf8ff;
    background: linear-gradient(180deg, #ffffff 12%, #d8f1ff 68%, #a9dbef);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: .035em;
    text-shadow: 0 9px 32px rgba(52, 171, 224, .22);
}

.portal-tagline {
    max-width: min(100%, 1220px);
    margin: 0;
    color: rgba(220, 239, 252, .82);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: clamp(13px, .95vw, 16px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .018em;
}

.portal-acronym {
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-thickness: .055em;
    text-underline-offset: .16em;
}

.home-cta {
    position: absolute;
    top: 14px;
    right: max(-260px, calc((100% - 100vw) / 2 + 28px));
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.home-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid rgba(102, 188, 226, .24);
    border-radius: 999px;
    background: rgba(6, 23, 43, .42);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 10px 24px rgba(0, 9, 24, .14);
    color: rgba(238, 251, 255, .86);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1;
    padding: 8px 12px;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.home-cta a:hover,
.home-cta a:focus-visible {
    border-color: rgba(82, 194, 230, .56);
    background: rgba(15, 54, 82, .64);
    color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

.quick-modules {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 12px;
    width: min(100%, var(--home-visual-width));
    margin: 12px auto 0;
}

.home-page .quick-modules {
    width: 100%;
}

.quick-module {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    min-width: 0;
    min-height: 52px;
    overflow: hidden;
    border: 1px solid rgba(102, 188, 226, .28);
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(12, 43, 67, .76), rgba(6, 23, 43, .64));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 12px 30px rgba(0, 9, 24, .18);
    color: #dff4ff;
    padding: 10px 12px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quick-module::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(40, 201, 196, .8), rgba(69, 169, 239, .72), transparent);
    opacity: .75;
}

.quick-module::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -34px;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(91, 183, 232, .10);
    border-radius: 50%;
}

.quick-module > span,
.quick-module-trigger > span {
    position: relative;
    z-index: 1;
    display: block;
}

.quick-module > span,
.quick-module-trigger > span {
    overflow: visible;
    color: #eefbff;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: clamp(14px, .82vw, 17px);
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-overflow: clip;
    white-space: nowrap;
}

.quick-module:hover,
.quick-module:focus-visible,
.quick-module-dropdown:focus-within {
    transform: translateY(-2px);
    border-color: rgba(82, 194, 230, .56);
    background:
        linear-gradient(145deg, rgba(15, 54, 82, .86), rgba(7, 31, 56, .76));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 18px 38px rgba(0, 9, 24, .30);
    outline: none;
}

.quick-module-dropdown {
    overflow: visible;
    padding: 0;
    z-index: 5;
}

.quick-module-trigger {
    all: unset;
    box-sizing: border-box;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: 52px;
    cursor: pointer;
    padding: 10px 12px;
}

.quick-submenu {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    min-width: 180px;
    border: 1px solid rgba(102, 188, 226, .28);
    border-radius: 12px;
    background: rgba(5, 22, 39, .96);
    box-shadow: 0 18px 38px rgba(0, 8, 22, .34);
    opacity: 0;
    padding: 20px 10px 10px;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
}

.quick-module-dropdown:hover .quick-submenu,
.quick-module-dropdown:focus-within .quick-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.quick-submenu a,
.quick-submenu-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(102, 188, 226, .16);
    border-radius: 9px;
    color: rgba(238, 251, 255, .92);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    padding: 9px 10px;
    text-align: center;
    text-decoration: none;
}

.quick-submenu a:hover,
.quick-submenu a:focus-visible {
    border-color: rgba(82, 194, 230, .50);
    background: rgba(19, 73, 98, .58);
    outline: none;
}

.quick-submenu-disabled {
    color: rgba(168, 193, 210, .62);
    cursor: not-allowed;
}

.quick-submenu-disabled em {
    color: rgba(69, 169, 239, .82);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.portal-mission {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 4px;
    width: min(100%, var(--home-visual-width));
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid rgba(102, 188, 226, .16);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 0%, rgba(40, 201, 196, .08), transparent 30%),
        linear-gradient(135deg, rgba(11, 42, 66, .48), rgba(5, 18, 35, .38));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
    color: #eefbff;
    font-size: clamp(14px, .9vw, 16px);
    line-height: 1.24;
    padding: clamp(8px, .9vw, 12px) clamp(16px, 2vw, 24px);
    text-align: center;
}

.home-page .portal-mission {
    width: 100%;
}

.portal-mission::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(40, 201, 196, .68), rgba(69, 169, 239, .50), transparent);
}

.portal-mission strong,
.portal-mission span {
    position: relative;
    z-index: 1;
}

.portal-mission strong {
    display: block;
    color: #ffffff;
    font-size: clamp(18px, 1.25vw, 26px);
    font-weight: 700;
    letter-spacing: -.012em;
    line-height: 1.14;
    text-wrap: balance;
}

.portal-mission span {
    display: block;
    max-width: 1040px;
    color: rgba(220, 239, 252, .86);
    font-size: clamp(12px, .82vw, 15px);
    font-weight: 500;
    line-height: 1.36;
    text-wrap: balance;
}

.scientific-visual {
    display: block;
    width: min(100%, var(--home-visual-width));
    margin: 12px auto 34px;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
}

.home-page .scientific-visual {
    display: grid;
    align-items: end;
    justify-items: center;
    align-self: stretch;
    width: 100%;
    min-height: var(--home-visual-available-height, auto);
    margin-bottom: 0;
}

@media (min-width: 1500px) and (max-height: 1050px) {
    .portal {
        padding-top: 22px;
    }

    .portal-heading {
        gap: 4px;
    }

    .portal-heading h1 {
        font-size: clamp(34px, 3.4vw, 48px);
    }

    .portal-tagline {
        font-size: clamp(12px, .9vw, 15px);
    }

    .quick-modules {
        margin-top: 10px;
    }

    .portal-mission {
        margin-top: 8px;
        padding: 8px 18px;
    }

    .scientific-visual {
        margin-top: 8px;
    }
}

@media (max-width: 1500px) {
    .home-cta {
        position: static;
        justify-content: center;
        margin: 0 auto 10px;
    }
}

@media (max-width: 1320px), (max-height: 760px) {
    .home-page .portal {
        --home-fit-enabled: 0;
        display: block;
        width: min(980px, calc(100% - 28px));
        min-height: 0;
        padding-bottom: 12px;
    }

    .home-cta {
        position: static;
        justify-content: center;
        margin: 0 auto 10px;
    }

    .home-cta a {
        min-height: 30px;
        font-size: 11px;
        padding: 7px 10px;
    }

    .home-page .quick-modules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        margin-top: 14px;
    }

    .home-page .portal-heading h1 {
        font-size: clamp(32px, 3.3vw, 46px);
    }

    .home-page .portal-tagline {
        font-size: clamp(12px, .85vw, 14px);
    }

    .home-page .quick-module {
        min-height: 50px;
    }

    .home-page .quick-module:nth-child(5) {
        grid-column: 1 / -1;
    }

    .home-page .portal-mission {
        margin-top: 12px;
    }

    .home-page .scientific-visual {
        display: block;
        align-self: auto;
        min-height: 0;
        margin: 18px auto 24px;
    }

    .home-page .brain-panel {
        height: auto;
    }

    .home-page .brain-frame {
        width: 100%;
    }

}

.brain-panel {
    display: grid;
    justify-items: center;
    min-width: 0;
}

.home-page .brain-panel {
    align-items: end;
    width: 100%;
    height: 100%;
}

.brain-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(90, 163, 208, .3);
    border-radius: 24px;
    background: #030817;
    box-shadow: 0 30px 78px rgba(0, 6, 18, .34), inset 0 0 36px rgba(27, 137, 218, .10);
}

.home-page .brain-frame {
    width: min(100%, var(--home-frame-width, var(--home-visual-width)));
}

.brain-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, rgba(2, 10, 28, .76));
}

.brain-frame::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(81, 173, 226, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(81, 173, 226, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
    opacity: .62;
}

.brain-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
    -webkit-user-drag: none;
    transform: translate3d(var(--brain-x, 0), var(--brain-y, 0), 0) scale(.99);
    animation: brainFloat 9s ease-in-out infinite;
    transition: transform .45s ease-out;
}

@keyframes brainFloat {
    0%, 100% {
        transform: translate3d(var(--brain-x, 0), var(--brain-y, 0), 0) scale(.985);
    }
    50% {
        transform: translate3d(var(--brain-x, 0), calc(var(--brain-y, 0) - 4px), 0) scale(1);
    }
}

.brain-node {
    position: absolute;
    z-index: 2;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(147, 236, 255, .9);
    border-radius: 50%;
    pointer-events: none;
    background: rgba(40, 201, 196, .72);
    box-shadow: 0 0 8px rgba(40, 201, 196, .9), 0 0 22px rgba(69, 169, 239, .78);
    animation: brainNodeGlow 4.8s ease-in-out infinite;
}

.node-a { left: 38%; top: 43%; }
.node-b { left: 46%; top: 35%; animation-delay: -1.1s; }
.node-c { left: 53%; top: 49%; animation-delay: -2.2s; }
.node-d { left: 60%; top: 39%; animation-delay: -3.3s; }
.node-e { left: 66%; top: 55%; animation-delay: -4.1s; }

@keyframes brainNodeGlow {
    0%, 100% { opacity: .28; transform: scale(.72); }
    50% { opacity: .94; transform: scale(1.42); }
}

.brain-caption {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 14px;
    left: 16px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    color: #e8fafb;
}

.brain-caption strong,
.brain-caption span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.brain-caption strong {
    color: #e8fafb;
}

.brain-caption span {
    color: rgba(232, 250, 251, .68);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 16px;
    width: min(100%, 1280px);
    margin: 0 auto;
}

.domain-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    min-height: 132px;
    border: 1px solid rgba(133, 200, 231, .18);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(13, 38, 60, .88), rgba(7, 24, 42, .78));
    box-shadow: 0 14px 32px rgba(0, 7, 18, .15);
    color: inherit;
    padding: 16px 20px;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.domain-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.domain-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(91, 183, 232, .12);
    border-radius: 50%;
}

.domain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 194, 230, .48);
    box-shadow: 0 24px 58px rgba(0, 6, 18, .34);
}

.domain-kicker {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.domain-card h2 {
    margin: 6px 0 6px;
    font-size: 26px;
}

.domain-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.domain-card .domain-full-name {
    color: #dff4ff;
    font-size: 15px;
    font-weight: 900;
}

.content-page {
    width: min(1180px, calc(100% - 28px));
}

.page-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 44px;
    border: 1px solid rgba(102, 188, 226, .20);
    border-radius: 18px;
    background: rgba(6, 24, 43, .58);
    box-shadow: 0 18px 45px rgba(0, 7, 20, .18);
    padding: 12px 14px 12px 18px;
}

.portal-home {
    color: #effbff;
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(22px, 2.35vw, 28px);
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.08;
    text-decoration: none;
    white-space: nowrap;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.page-link-dropdown {
    position: relative;
    display: inline-flex;
}

.page-links a,
.page-link-trigger {
    border: 1px solid rgba(102, 188, 226, .20);
    border-radius: 999px;
    background: transparent;
    box-sizing: border-box;
    color: rgba(223, 244, 255, .84);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    min-height: 36px;
    padding: 10px 13px;
    text-decoration: none;
    white-space: nowrap;
}

.page-links a:hover,
.page-links a:focus-visible,
.page-links a.active,
.page-link-trigger:hover,
.page-link-trigger:focus-visible,
.page-link-dropdown:focus-within .page-link-trigger {
    border-color: rgba(40, 201, 196, .62);
    background: rgba(19, 73, 98, .60);
    color: #ffffff;
    outline: none;
}

.page-submenu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 6px);
    left: 50%;
    display: grid;
    gap: 6px;
    width: max-content;
    min-width: 156px;
    border: 1px solid rgba(102, 188, 226, .24);
    border-radius: 12px;
    background: rgba(5, 22, 39, .96);
    box-shadow: 0 18px 38px rgba(0, 8, 22, .30);
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
}

.page-link-dropdown:hover .page-submenu,
.page-link-dropdown:focus-within .page-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.page-submenu a,
.page-submenu-disabled {
    align-items: center;
    border: 1px solid rgba(102, 188, 226, .15);
    border-radius: 10px;
    display: flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
    min-height: 32px;
    padding: 7px 10px;
    text-align: center;
    white-space: normal;
}

.page-submenu-disabled {
    color: rgba(168, 193, 210, .62);
    cursor: not-allowed;
    font-size: 15px;
    font-weight: 900;
    gap: 6px;
    line-height: 1.15;
}

.page-submenu-disabled em {
    color: rgba(69, 169, 239, .82);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(102, 188, 226, .22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 84% 18%, rgba(69, 169, 239, .18), transparent 34%),
        linear-gradient(145deg, rgba(13, 44, 70, .86), rgba(5, 19, 37, .78));
    box-shadow: 0 22px 62px rgba(0, 8, 23, .22);
    padding: clamp(34px, 5vw, 64px);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(91, 183, 232, .12);
    border-radius: 50%;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #f4fbff;
    font-size: clamp(34px, 5.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -.025em;
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(220, 239, 252, .82);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.62;
}

.content-grid {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

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

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

.content-card,
.cta-band {
    border: 1px solid rgba(133, 200, 231, .18);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(14, 44, 69, .84), rgba(8, 29, 51, .76));
    box-shadow: 0 18px 48px rgba(0, 8, 20, .18);
}

.content-card {
    padding: 24px;
}

.content-card h2,
.cta-band h2 {
    margin: 0 0 10px;
    color: #f0fbff;
    font-size: 22px;
    line-height: 1.25;
}

.content-card p,
.cta-band p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.wide-card {
    margin-top: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.feature-list span {
    border: 1px solid rgba(102, 188, 226, .18);
    border-radius: 14px;
    background: rgba(4, 20, 36, .36);
    color: rgba(223, 244, 255, .88);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    padding: 12px 14px;
}

.access-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid rgba(102, 188, 226, .18);
    border-radius: 16px;
    background: rgba(4, 20, 36, .30);
}

.access-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: rgba(223, 244, 255, .88);
    font-size: 14px;
    line-height: 1.5;
}

.access-table th,
.access-table td {
    border-bottom: 1px solid rgba(102, 188, 226, .14);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.access-table th {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.access-table td {
    font-weight: 750;
}

.access-table tbody tr:last-child td {
    border-bottom: 0;
}

.network-showcase {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
    gap: 22px;
    align-items: center;
}

.network-copy .page-kicker {
    margin-bottom: 9px;
}

.network-copy h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.network-figure {
    margin: 0;
}

.network-figure img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(102, 188, 226, .22);
    border-radius: 16px;
    background: rgba(4, 20, 36, .36);
    box-shadow: 0 16px 42px rgba(0, 8, 20, .22);
}

.network-figure figcaption {
    margin-top: 10px;
    color: rgba(168, 193, 210, .88);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.step-list {
    margin: 12px 0 0;
    padding-left: 21px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.step-list li + li {
    margin-top: 7px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 24px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta-actions a {
    border: 1px solid rgba(40, 201, 196, .40);
    border-radius: 999px;
    background: rgba(14, 67, 91, .62);
    color: #ecfbff;
    font-size: 13px;
    font-weight: 900;
    padding: 11px 14px;
    text-decoration: none;
    white-space: nowrap;
}

.cta-actions a:hover,
.cta-actions a:focus-visible {
    border-color: rgba(40, 201, 196, .82);
    background: rgba(20, 88, 118, .78);
    outline: none;
}

.contact-consortium-band {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
}

.contact-consortium-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-location-card {
    overflow: hidden;
    border: 1px solid rgba(102, 188, 226, .18);
    border-radius: 16px;
    background: rgba(4, 20, 36, .36);
}

.contact-location-card h3 {
    margin: 0;
    color: #f0fbff;
    font-size: 18px;
    padding: 14px 16px;
}

.contact-location-card .location-visual {
    border-top-color: rgba(102, 188, 226, .18);
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.contact-info-list div {
    border: 1px solid rgba(102, 188, 226, .18);
    border-radius: 14px;
    background: rgba(4, 20, 36, .36);
    padding: 14px 16px;
}

.contact-info-list dt {
    margin-bottom: 5px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-info-list dd {
    margin: 0;
    color: #eefbff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-info-list a {
    color: #eefbff;
    text-decoration-color: rgba(40, 201, 196, .55);
    text-underline-offset: 4px;
}

.funding-contact-band {
    align-items: stretch;
}

.funding-contact-list {
    min-width: min(100%, 360px);
    margin-top: 0;
}

.domain-icon {
    position: relative;
    display: block;
    width: 58px;
    height: 40px;
}

.domain-icon i {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(40, 201, 196, .44);
}

.domain-icon.single-cell i {
    width: 13px;
    height: 13px;
}

.domain-icon.single-cell i:nth-child(1) { left: 2px; top: 18px; }
.domain-icon.single-cell i:nth-child(2) { left: 19px; top: 3px; }
.domain-icon.single-cell i:nth-child(3) { left: 22px; top: 27px; }
.domain-icon.single-cell i:nth-child(4) { left: 41px; top: 12px; }
.domain-icon.single-cell i:nth-child(5) { left: 45px; top: 33px; width: 9px; height: 9px; }

.domain-icon.spatial i {
    border-radius: 3px;
    background: #38a6de;
    box-shadow: 0 0 12px rgba(56, 166, 222, .34);
}

.domain-icon.spatial i:nth-child(1) { left: 1px; top: 3px; width: 22px; height: 16px; }
.domain-icon.spatial i:nth-child(2) { left: 28px; top: 3px; width: 26px; height: 16px; }
.domain-icon.spatial i:nth-child(3) { left: 1px; top: 24px; width: 15px; height: 17px; }
.domain-icon.spatial i:nth-child(4) { left: 21px; top: 24px; width: 19px; height: 17px; }
.domain-icon.spatial i:nth-child(5) { left: 45px; top: 24px; width: 9px; height: 17px; }

.domain-icon.ecdna i {
    border: 3px solid #7e75dc;
    background: transparent;
    box-shadow: 0 0 12px rgba(126, 117, 220, .26);
}

.domain-icon.ecdna i:nth-child(1) { left: 0; top: 5px; width: 30px; height: 30px; }
.domain-icon.ecdna i:nth-child(2) { left: 18px; top: 10px; width: 34px; height: 34px; }
.domain-icon.ecdna i:nth-child(3) { left: 36px; top: 1px; width: 20px; height: 20px; }

.domain-card.pending {
    cursor: default;
    opacity: .72;
}

.domain-card.pending:hover {
    transform: none;
}

.domain-card em {
    position: absolute;
    right: 20px;
    top: 20px;
    border: 1px solid rgba(91, 183, 232, .24);
    border-radius: 999px;
    background: rgba(13, 53, 79, .78);
    color: var(--blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    padding: 7px 10px;
}

.site-footer {
    margin-top: 14px;
    color: #8daabd;
    font-size: 13px;
    text-align: center;
}

.home-page .site-footer {
    position: static;
    margin-top: var(--home-footer-gap, 12px);
    padding-bottom: 16px;
}

.copyright-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    line-height: 1.6;
}

.icp-record {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(141, 170, 189, 0.60);
    font-size: 10px;
    font-weight: 400;
    text-decoration: none;
}

.icp-record:hover {
    color: #dceffc;
}

.icp-record img {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

@media (max-width: 1100px) {
    .portal {
        width: min(1100px, calc(100% - 24px));
        padding: 40px 0 12px;
    }

    .scientific-visual {
        margin: 30px auto 22px;
    }

    .quick-modules {
        width: min(100%, 1040px);
        margin-bottom: 0;
    }

    .domain-card {
        min-height: 132px;
        padding: 15px 18px;
    }
}

@media (max-width: 900px) {
    .portal {
        width: min(760px, calc(100% - 28px));
        padding: 32px 0 12px;
    }

    .home-cta {
        gap: 7px;
    }

    .portal-heading h1 {
        font-size: clamp(38px, 8.4vw, 58px);
        line-height: 1;
    }

    .scientific-visual {
        margin: 24px auto 26px;
    }

    .quick-modules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 24px auto 0;
    }

    .page-topbar,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-consortium-band {
        display: flex;
    }

    .page-links,
    .cta-actions {
        justify-content: flex-start;
    }

    .two-column,
    .three-column,
    .network-showcase,
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .portal {
        width: calc(100% - 20px);
        padding: 24px 0 10px;
    }

    .home-cta {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 280px);
    }

    .home-cta a {
        width: 100%;
    }

    .portal-heading h1 {
        font-size: clamp(32px, 11vw, 46px);
        letter-spacing: .035em;
    }

    .portal-tagline {
        font-size: 13px;
        line-height: 1.45;
        max-width: 92vw;
    }

    .scientific-visual {
        margin: 20px auto 18px;
    }

    .quick-modules {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px auto 0;
    }

    .quick-module {
        min-height: 54px;
        padding: 11px 14px;
    }

    .quick-module > span,
    .quick-module-trigger > span {
        font-size: 16px;
    }

    .page-topbar {
        margin-bottom: 26px;
        padding: 12px;
    }

    .portal-home {
        font-size: 18px;
        white-space: normal;
    }

    .page-links {
        gap: 8px;
    }

    .page-links a,
    .page-link-trigger {
        font-size: 12px;
        padding: 8px 10px;
        white-space: normal;
    }

    .page-submenu {
        display: grid;
        right: auto;
        left: 0;
        min-width: 156px;
        transform: translateY(-4px);
    }

    .page-link-dropdown:hover .page-submenu,
    .page-link-dropdown:focus-within .page-submenu {
        transform: translateY(0);
    }

    .page-submenu a,
    .page-submenu-disabled {
        font-size: 12px;
    }

    .page-hero {
        border-radius: 18px;
        padding: 28px 20px;
    }

    .content-card,
    .cta-band {
        border-radius: 16px;
        padding: 18px;
    }

    .domain-grid {
        gap: 12px;
    }

    .domain-card {
        min-height: 136px;
        border-radius: 15px;
        padding: 12px 18px;
    }

    .domain-kicker {
        margin-top: 7px;
        font-size: 11px;
    }

    .domain-card h2 {
        margin: 5px 0;
        font-size: 24px;
    }

    .domain-card p {
        font-size: 14px;
    }

    .domain-icon {
        transform: scale(.88);
        transform-origin: left top;
        margin-bottom: -4px;
    }

    .domain-card em {
        right: 14px;
        top: 14px;
        padding: 6px 9px;
    }

    .site-footer {
        margin-top: 12px;
        padding: 0 10px;
        line-height: 1.5;
    }
}

@media (hover: none) {
    .quick-module:hover {
        transform: none;
    }

    .domain-card:hover {
        transform: none;
    }
}

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