:root {
    --ink: #050405;
    --panel: #121014;
    --cream: #f7f0e8;
    --muted: #bdb1aa;
    --gold: #d5b36a;
    --gold2: #edcf8d;
    --pink: #ef4d9a;
    --pink2: #ff8cc1;
    --line: rgba(213, 179, 106, 0.22);
    --line2: rgba(255, 255, 255, 0.09);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
    --max: 1240px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: radial-gradient(circle at 12% 8%, rgba(239, 77, 154, 0.06), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(213, 179, 106, 0.07), transparent 28%), var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    color: inherit;
}
button {
    font: inherit;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 5000;
    background: #fff;
    color: #111;
    padding: 0.8rem 1rem;
}
.skip-link:focus {
    top: 1rem;
}
.institute-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0 4vw;
    background: rgba(5, 4, 5, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.exit-institute {
    color: #c8bdb5;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}
.institute-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.infinity-mark {
    font: 400 2.25rem/1 var(--serif);
    color: var(--gold);
}
.institute-brand strong {
    display: block;
    font: 500 1rem/1.05 var(--serif);
    color: #fff;
}
.institute-brand small {
    display: block;
    margin-top: 0.28rem;
    color: #9e9189;
    font-size: 0.59rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.institute-links {
    justify-self: end;
    display: flex;
    gap: 1.1rem;
    align-items: center;
}
.institute-links a {
    text-decoration: none;
    color: #d9d0ca;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    padding: 31px 0 27px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.institute-links a:hover,
.institute-links a.active {
    color: var(--pink2);
    border-color: var(--pink);
}
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    padding: 10px;
}
.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--gold);
    margin: 4px 0;
}
.room-rail {
    position: sticky;
    top: 82px;
    z-index: 900;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(11, 9, 11, 0.93);
    border-bottom: 1px solid var(--line2);
    backdrop-filter: blur(14px);
}
.room-rail::-webkit-scrollbar {
    display: none;
}
.room-rail a {
    flex: 0 0 auto;
    text-decoration: none;
    padding: 0.9rem 1.15rem;
    color: #958b84;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.room-rail a:hover,
.room-rail a.active {
    color: var(--gold2);
    background: rgba(213, 179, 106, 0.06);
}
.shell {
    width: min(var(--max), 92vw);
    margin: auto;
}
.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold2);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}
h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
}
h1 {
    margin: 0;
    font-size: clamp(3.7rem, 8vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}
h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5.7vw, 5.7rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
}
h3 {
    line-height: 1.05;
}
em {
    font-style: italic;
    color: var(--pink2);
}
.lead {
    max-width: 760px;
    color: #d6ccc5;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    line-height: 1.5;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 50px;
    padding: 0.8rem 1.25rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    text-decoration: none;
    color: var(--gold2);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: 0.25s ease;
}
.button:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: #090607;
}
.button.pink {
    border-color: var(--pink);
    color: #ffb0d1;
}
.button.pink:hover {
    background: var(--pink);
    color: #fff;
}
.button-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.section {
    padding: clamp(5rem, 8vw, 8rem) 0;
    border-bottom: 1px solid var(--line2);
}
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.5rem;
}
.section-head p:last-child {
    margin: 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.06rem;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.room-hero {
    position: relative;
    min-height: calc(100vh - 128px);
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.room-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 4, 5, 0.08), rgba(5, 4, 5, 0.88)),
        repeating-linear-gradient(90deg, transparent 0 109px, rgba(255, 255, 255, 0.018) 110px),
        repeating-linear-gradient(0deg, transparent 0 109px, rgba(255, 255, 255, 0.018) 110px);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 5vw;
    align-items: center;
    padding: 7rem 0;
}
.hero-copy {
    max-width: 820px;
}
.hero-copy .lead {
    margin: 1.7rem 0 0;
}
.hero-art {
    min-height: 500px;
    display: grid;
    place-items: center;
    position: relative;
}
.stage-art,
.briefing-art,
.globe-art,
.work-art {
    width: min(500px, 90%);
    aspect-ratio: 1;
    position: relative;
}
.stage-screen {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 10%;
    height: 50%;
    border: 1px solid rgba(213, 179, 106, 0.38);
    background: radial-gradient(circle at 50% 45%, rgba(239, 77, 154, 0.22), transparent 35%),
        linear-gradient(145deg, #161118, #050405);
    display: grid;
    place-items: center;
}
.stage-screen strong {
    font: 500 clamp(3.5rem, 8vw, 7rem) / 1 var(--serif);
    color: var(--gold2);
}
.spotlight {
    position: absolute;
    top: -15%;
    left: 37%;
    width: 26%;
    height: 100%;
    background: linear-gradient(rgba(239, 77, 154, 0.18), transparent 70%);
    clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
    filter: blur(4px);
}
.stage-floor {
    position: absolute;
    left: 3%;
    right: 3%;
    bottom: 8%;
    height: 28%;
    border-top: 1px solid var(--gold);
    transform: rotateX(68deg);
    background: linear-gradient(rgba(213, 179, 106, 0.13), transparent);
}
.audience {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 25%;
}
.audience i {
    width: 8%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #131014;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.table-ring {
    position: absolute;
    inset: 15%;
    border: 1px solid rgba(213, 179, 106, 0.42);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 179, 106, 0.09), rgba(255, 255, 255, 0.015) 55%, transparent 58%);
}
.table-core {
    position: absolute;
    inset: 37%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: #120f12;
    border: 1px solid var(--pink);
}
.table-core strong {
    font: 500 1.15rem/1.1 var(--serif);
    color: var(--gold2);
}
.brief-node {
    position: absolute;
    width: 24%;
    padding: 0.75rem;
    border: 1px solid var(--line);
    background: rgba(11, 9, 11, 0.88);
    text-align: center;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d9cec6;
}
.brief-node.n1 {
    top: 1%;
    left: 38%;
}
.brief-node.n2 {
    top: 38%;
    right: 0;
}
.brief-node.n3 {
    bottom: 4%;
    left: 38%;
}
.brief-node.n4 {
    top: 38%;
    left: 0;
}
.orbit-line {
    position: absolute;
    inset: 27%;
    border: 1px dashed rgba(239, 77, 154, 0.28);
    border-radius: 50%;
}
.globe {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px solid rgba(213, 179, 106, 0.48);
    background: linear-gradient(90deg, transparent 48%, rgba(213, 179, 106, 0.18) 49% 51%, transparent 52%),
        linear-gradient(transparent 48%, rgba(239, 77, 154, 0.15) 49% 51%, transparent 52%),
        radial-gradient(circle at 35% 28%, rgba(239, 77, 154, 0.17), transparent 25%),
        radial-gradient(circle at 65% 70%, rgba(213, 179, 106, 0.17), transparent 25%), #0d0a0e;
}
.globe:before,
.globe:after {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(213, 179, 106, 0.15);
    border-radius: 50%;
}
.globe:before {
    transform: scaleX(0.45);
}
.globe:after {
    transform: scaleY(0.45);
}
.orbit {
    position: absolute;
    inset: 11%;
    border: 1px solid rgba(239, 77, 154, 0.24);
    border-radius: 50%;
    transform: rotate(25deg);
}
.stage-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold2);
    box-shadow: 0 0 18px var(--gold);
}
.s1 {
    left: 16%;
    top: 30%;
}
.s2 {
    right: 16%;
    top: 24%;
}
.s3 {
    left: 30%;
    bottom: 12%;
}
.s4 {
    right: 24%;
    bottom: 18%;
}
.s5 {
    left: 48%;
    top: 8%;
}
.voices-art {
    width: min(520px, 92%);
    height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.voices-art i {
    display: block;
    width: 9px;
    border-radius: 10px;
    background: linear-gradient(var(--gold2), var(--pink));
}
.voices-art i:nth-child(1) {
    height: 16%;
}
.voices-art i:nth-child(2) {
    height: 31%;
}
.voices-art i:nth-child(3) {
    height: 52%;
}
.voices-art i:nth-child(4) {
    height: 74%;
}
.voices-art i:nth-child(5) {
    height: 91%;
}
.voices-art i:nth-child(6) {
    height: 65%;
}
.voices-art i:nth-child(7) {
    height: 43%;
}
.voices-art i:nth-child(8) {
    height: 27%;
}
.voices-art i:nth-child(9) {
    height: 48%;
}
.voices-art i:nth-child(10) {
    height: 70%;
}
.voices-art i:nth-child(11) {
    height: 37%;
}
.quote-mark {
    position: absolute;
    font: 500 14rem/1 var(--serif);
    color: rgba(213, 179, 106, 0.07);
    top: 8%;
    left: 7%;
}
.work-core {
    position: absolute;
    inset: 32%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: #100d10;
    border: 1px solid var(--gold);
}
.work-core strong {
    font: 500 1.3rem/1.1 var(--serif);
    color: var(--gold2);
}
.work-node {
    position: absolute;
    width: 29%;
    padding: 1rem;
    border: 1px solid var(--line2);
    background: #0d0b0d;
    text-align: center;
    color: #ddd1c9;
    font-size: 0.7rem;
}
.w1 {
    top: 2%;
    left: 35%;
}
.w2 {
    top: 34%;
    right: 0;
}
.w3 {
    bottom: 3%;
    left: 35%;
}
.w4 {
    top: 34%;
    left: 0;
}
.connector {
    position: absolute;
    inset: 19%;
    border: 1px dashed rgba(213, 179, 106, 0.25);
    border-radius: 50%;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.card {
    min-height: 270px;
    padding: 1.8rem;
    border: 1px solid var(--line2);
    background: linear-gradient(145deg, rgba(213, 179, 106, 0.06), transparent 38%), rgba(255, 255, 255, 0.02);
    transition: 0.25s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(213, 179, 106, 0.55);
}
.card .num {
    display: block;
    color: var(--pink);
    font: 500 2.2rem/1 var(--serif);
}
.card small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gold2);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.card h3 {
    margin: 2.3rem 0 0.7rem;
    font-size: 1.75rem;
}
.card p {
    margin: 0;
    color: #bdb1aa;
    font-size: 0.92rem;
}
.card a {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--gold2);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1rem;
}
.feature-copy,
.feature-side {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: clamp(2rem, 5vw, 4rem);
}
.feature-copy blockquote {
    margin: 0;
    font: 500 clamp(2rem, 4vw, 4rem) / 1.05 var(--serif);
    letter-spacing: -0.04em;
	color: #ffffff !important;
}
.feature-copy blockquote em {
    display: block;
    margin-top: 0.4rem;
}
.feature-side h3 {
    margin: 0.5rem 0 1rem;
    font-size: 2rem;
	color: #ffffff !important;
}
.feature-side p {
    color: var(--muted);
}
.briefing-console {
    display: grid;
    grid-template-columns: 330px 1fr;
    border: 1px solid var(--line);
    background: #0b090b;
}
.briefing-menu {
    display: grid;
    border-right: 1px solid var(--line);
}
.briefing-menu button {
    text-align: left;
    padding: 1.25rem 1.4rem;
    border: 0;
    border-bottom: 1px solid var(--line2);
    background: transparent;
    color: #b9aea7;
    cursor: pointer;
}
.briefing-menu button small {
    display: block;
    color: #8d827b;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.briefing-menu button strong {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--serif);
    font-size: 1.05rem;
}
.briefing-menu button.active {
    background: rgba(239, 77, 154, 0.08);
    color: #fff;
    border-left: 3px solid var(--pink);
}
.briefing-output {
    padding: clamp(2rem, 5vw, 4rem);
    min-height: 390px;
}
.briefing-output .index {
    color: var(--pink);
    font: 500 3rem/1 var(--serif);
}
.briefing-output h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 1rem 0;
}
.briefing-output p {
    max-width: 700px;
    color: #c7bbb4;
    font-family: var(--serif);
    font-size: 1.08rem;
}
.lens-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.lens-row button {
    border: 1px solid var(--line);
    background: transparent;
    color: #bcaea6;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    cursor: pointer;
}
.lens-row button.active {
    border-color: var(--pink);
    color: #fff;
    background: rgba(239, 77, 154, 0.08);
}
.stage-panel {
    border: 1px solid var(--line);
    padding: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, rgba(213, 179, 106, 0.07), transparent 40%), var(--panel);
}
.stage-panel h3 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    margin: 0.4rem 0 1rem;
}
.stage-panel p {
    color: var(--muted);
    max-width: 760px;
}
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.voice-card {
    min-height: 290px;
    padding: 2rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.voice-card blockquote {
    margin: 0;
    font: 500 1.45rem/1.4 var(--serif);
}
.voice-card cite {
    color: var(--gold2);
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 0.08em;
}
.empty-voices {
    grid-column: 1/-1;
    padding: 3rem;
    border: 1px dashed rgba(213, 179, 106, 0.35);
    text-align: center;
    background: rgba(213, 179, 106, 0.025);
}
.empty-voices strong {
    display: block;
    font: 500 2rem/1.1 var(--serif);
    color: var(--gold2);
}
.empty-voices p {
    max-width: 650px;
    margin: 1rem auto 0;
    color: var(--muted);
}
.pathway {
    position: relative;
    overflow: hidden;
}
.pathway:after {
    content: "↗";
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    color: rgba(213, 179, 106, 0.35);
    font-size: 2rem;
}
.related {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}
.related p {
    margin: 0;
    color: var(--muted);
}
.site-footer {
    padding: 3rem 0;
    background: #030203;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    color: #8e827b;
    font-size: 0.75rem;
}
.footer-grid strong {
    display: block;
    color: var(--gold2);
    font-family: var(--serif);
    font-size: 1rem;
}
.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #b7aaa3;
    text-decoration: none;
}
.light {
    background: #f2ebe3;
    color: #171215;
}
.light .eyebrow {
    color: #806330;
}
.light p {
    color: #ffffff;
}
.light .button {
    color: #ffffff;
}
@media (max-width: 1100px) {
    .institute-nav {
        grid-template-columns: auto 1fr auto;
    }
    .exit-institute {
        display: none;
    }
    .institute-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        justify-self: end;
    }
    .institute-links.open {
        display: flex;
        position: fixed;
        top: 82px;
        right: 0;
        width: min(88vw, 390px);
        height: calc(100vh - 82px);
        padding: 2rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #070607;
        border-left: 1px solid var(--line);
        overflow: auto;
    }
    .institute-links.open a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--line2);
    }
    .hero-grid,
    .section-head,
    .feature-panel {
        grid-template-columns: 1fr;
    }
    .hero-art {
        min-height: 430px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .institute-nav {
        min-height: 72px;
        padding: 0 1rem;
    }
    .room-rail {
        top: 72px;
        justify-content: flex-start;
    }
    .room-hero {
        min-height: auto;
    }
    .hero-grid {
        padding: 5rem 0 4rem;
    }
    .hero-art {
        min-height: 360px;
    }
    .grid-4,
    .grid-3,
    .voices-grid {
        grid-template-columns: 1fr;
    }
    .briefing-console {
        grid-template-columns: 1fr;
    }
    .briefing-menu {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .related {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
