:root {
    --bg: #050a10;
    --bg-soft: #09111b;
    --panel: #0d1723;
    --panel-2: #111e2b;
    --line: rgba(255,255,255,.11);
    --line-strong: rgba(255,255,255,.2);
    --text: #f5f8fc;
    --muted: #97a7b9;
    --blue: #0b8dff;
    --blue-2: #35b7ff;
    --blue-soft: rgba(11,141,255,.16);
    --green: #36d399;
    --amber: #f1b84b;
    --danger: #ff5d6c;
    --shadow: 0 30px 80px rgba(0,0,0,.38);
    --shell: min(1440px, calc(100% - 88px));
    --border:rgba(148,163,184,.15);
    --container:min(1180px,calc(100% - 40px))
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--blue); color: white; }

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    background: white;
    color: #050a10;
    font-weight: 800;
    transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

/* Header */
.topbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    padding: 0 34px;
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, height .25s ease;
}
.topbar.is-scrolled {
    height: 72px;
    background: rgba(5,10,16,.93);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
}
.site-brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.site-brand img { width: 46px; height: 46px; filter: drop-shadow(0 0 16px rgba(11,141,255,.35)); }
.brand-wordmark { display: grid; line-height: 1; letter-spacing: .12em; }
.brand-wordmark b { font-size: 13px; }
.brand-wordmark small { margin-top: 6px; color: var(--blue-2); font-size: 10px; font-weight: 800; }
.primary-nav { display: flex; justify-content: center; align-items: stretch; gap: 30px; height: 100%; }
.primary-nav > a,
.nav-cluster-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d1dae4;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
}
.primary-nav > a span,
.nav-cluster-trigger > span { color: #526275; font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.primary-nav > a::after,
.nav-cluster-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.primary-nav > a:hover,
.primary-nav > a.is-active,
.nav-cluster-trigger:hover,
.nav-cluster-trigger.is-active { color: white; }
.primary-nav > a.is-active::after,
.primary-nav > a:hover::after,
.nav-cluster-trigger.is-active::after { transform: scaleX(1); }
.nav-cluster { position: relative; display: flex; height: 100%; }
.nav-cluster-trigger svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.nav-cluster.is-open .nav-cluster-trigger svg { transform: rotate(180deg); }
.nav-cluster-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 330px;
    transform: translate(-50%, 12px);
    padding: 8px;
    background: #0a131e;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}
.nav-cluster.is-open .nav-cluster-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-cluster-menu a { display: grid; grid-template-columns: 56px 1fr; gap: 13px; align-items: center; padding: 14px; border: 1px solid transparent; }
.nav-cluster-menu a:hover { background: rgba(255,255,255,.04); border-color: var(--line); }
.nav-cluster-menu strong { color: var(--blue-2); letter-spacing: .12em; }
.nav-cluster-menu span { color: var(--muted); font-size: 12px; }
.topbar-actions { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.text-action { font-size: 13px; font-weight: 800; color: #d9e4ee; }
.text-action:hover { color: white; }
.nav-toggle { display: none; }

/* Buttons */
.pill-button {
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pill-button:hover { transform: translateY(-2px); }
.pill-button-primary { background: var(--blue); color: white; box-shadow: 0 16px 34px rgba(11,141,255,.2); }
.pill-button-primary:hover { background: #249cff; box-shadow: 0 18px 42px rgba(11,141,255,.32); }
.pill-button-ghost { background: rgba(7,14,23,.38); color: white; border-color: rgba(255,255,255,.3); backdrop-filter: blur(10px); }
.pill-button-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }
.pill-button-light { background: white; color: #07101a; }
.pill-button-large { min-height: 54px; padding: 0 28px; }
.arrow-link { display: inline-flex; align-items: center; gap: 16px; color: white; font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.arrow-link span { color: var(--blue-2); font-size: 19px; transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(5px); }
.arrow-link-light span { color: white; }

/* Shared */
.section-shell { width: var(--shell); margin: 0 auto; }
.eyebrow { color: var(--blue-2); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.section-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: #69798a; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Home hero */
.landing-hero { position: relative; min-height: 920px; height: 100vh; max-height: 1100px; overflow: hidden; background: #050a10; }
.landing-media {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-scene.png');
    background-position: 58% center;
    background-size: cover;
    transform: scale(1.03);
}
.landing-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #050a10 0%, rgba(5,10,16,.98) 31%, rgba(5,10,16,.67) 56%, rgba(5,10,16,.24) 82%, rgba(5,10,16,.3) 100%),
        linear-gradient(0deg, #050a10 0%, transparent 34%, rgba(0,0,0,.26) 100%);
}
.landing-grid {
    position: relative;
    z-index: 2;
    width: var(--shell);
    height: 100%;
    margin: 0 auto;
    padding-top: 126px;
    padding-bottom: 95px;
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
    gap: 72px;
    align-items: center;
}
.landing-copy { max-width: 780px; }
.micro-label { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; color: #d8e3ec; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.micro-label span { width: 42px; height: 2px; background: var(--blue); box-shadow: 0 0 18px rgba(11,141,255,.75); }
.landing-copy h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(78px, 8vw, 144px); font-weight: 400; letter-spacing: .012em; line-height: .78; text-transform: uppercase; }
.landing-copy h1 span, .landing-copy h1 em { display: block; font-style: normal; }
.landing-copy h1 em { margin-left: clamp(38px, 5vw, 96px); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.95); text-shadow: 0 18px 60px rgba(0,0,0,.45); }
.hero-slogan { margin: 32px 0 0; color: #c6d1dc; font-size: clamp(16px, 1.25vw, 21px); font-weight: 500; letter-spacing: .15em; }
.hero-slogan b { color: var(--blue-2); }
.hero-description { max-width: 610px; margin: 20px 0 0; color: #a7b5c4; font-size: 17px; line-height: 1.75; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-facts { display: flex; gap: 0; margin-top: 52px; width: max-content; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-facts div { display: flex; gap: 13px; align-items: center; min-width: 168px; padding: 16px 18px; border-right: 1px solid var(--line); }
.hero-facts div:first-child { border-left: 1px solid var(--line); }
.hero-facts b { color: var(--blue-2); font-size: 11px; }
.hero-facts span { color: #c2cfda; font-size: 11px; font-weight: 800; line-height: 1.35; text-transform: uppercase; }
.landing-side { align-self: end; margin-bottom: 42px; }
.side-caption { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; margin-top: 20px; padding: 0 4px; }
.side-caption span { color: #8190a0; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.side-caption b { max-width: 240px; text-align: right; color: #edf4fa; font-size: 10px; letter-spacing: .11em; }
.live-panel { background: rgba(6,13,21,.82); border: 1px solid rgba(255,255,255,.19); box-shadow: 0 30px 80px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
.live-panel-heading { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line); }
.live-panel-heading > span { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.live-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(54,211,153,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(54,211,153,0); } }
.live-panel-heading button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; background: transparent; color: #8393a5; cursor: pointer; }
.live-panel-heading button:hover { color: white; }
.live-panel-heading button.is-loading svg { animation: rotate .8s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.live-panel-heading svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.live-service { display: grid; grid-template-columns: 46px 1fr auto; gap: 15px; align-items: center; min-height: 94px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(11,141,255,.4); background: var(--blue-soft); color: var(--blue-2); font-size: 13px; font-weight: 1000; }
.service-icon-discord { background: rgba(115,138,255,.12); color: #8ea0ff; border-color: rgba(115,138,255,.34); }
.service-main { min-width: 0; display: grid; }
.service-main small { color: #7e8e9e; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-main strong { margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.service-main span { margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #8191a2; font-size: 10px; }
.service-value { min-width: 92px; text-align: right; }
.service-value b { display: block; font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: 22px; line-height: 1; }
.service-value span { color: #6e7e8f; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.live-panel-footer { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 18px; color: #718191; font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.live-state { color: var(--green); }
.live-service.is-offline .service-icon { color: var(--danger); border-color: rgba(255,93,108,.35); background: rgba(255,93,108,.1); }
.live-service.is-offline .service-value b { color: var(--danger); }
.live-service.is-unconfigured .service-icon { color: var(--amber); border-color: rgba(241,184,75,.32); background: rgba(241,184,75,.1); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 15px; color: #8494a4; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.scroll-cue i { width: 54px; height: 1px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--blue); transform: translateX(-100%); animation: scrollline 2s infinite; }
@keyframes scrollline { 60%, 100% { transform: translateX(100%); } }

/* Manifesto */
.manifesto { width: var(--shell); margin: 0 auto; min-height: 650px; padding: 120px 0; display: grid; grid-template-columns: 150px minmax(0,1.2fr) minmax(300px,.8fr); gap: 70px; align-items: center; }
.manifesto-index { align-self: stretch; padding-top: 9px; border-right: 1px solid var(--line); color: #1b2a38; font-family: Impact, sans-serif; font-size: 98px; line-height: .8; }
.manifesto-index span { color: var(--blue); font-size: 20px; }
.manifesto-copy h2 { max-width: 780px; margin: 18px 0 26px; font-family: Impact, "Arial Narrow Bold", sans-serif; font-size: clamp(54px, 5.3vw, 92px); font-weight: 400; line-height: .98; text-transform: uppercase; }
.manifesto-copy p { max-width: 760px; color: #9aaabd; font-size: 18px; line-height: 1.75; }
.manifesto-copy .arrow-link { margin-top: 25px; }
.manifesto-quote { align-self: stretch; padding: 42px; display: flex; flex-direction: column; justify-content: center; background: var(--panel); border-left: 3px solid var(--blue); }
.manifesto-quote > span { color: var(--blue); font-family: Georgia, serif; font-size: 76px; line-height: .5; }
.manifesto-quote p { margin: 24px 0 0; color: #dbe6ef; font-size: 24px; font-weight: 700; line-height: 1.45; }

/* Experience */
.experience-section { padding: 108px 0 120px; background: #08111a; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.experience-layout { display: grid; grid-template-columns: minmax(320px,.78fr) minmax(0,1.22fr); gap: 90px; padding-top: 62px; }
.experience-heading h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(58px,6vw,102px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.experience-heading h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--blue-2); }
.experience-heading p { max-width: 490px; margin-top: 30px; color: #97a7b8; font-size: 17px; line-height: 1.75; }
.experience-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.experience-card { min-height: 300px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .25s ease; }
.experience-card:hover { background: rgba(11,141,255,.07); }
.experience-card > span { color: #58697a; font-size: 10px; font-weight: 900; }
.experience-symbol { margin-top: 30px; color: var(--blue-2); font-size: 32px; }
.experience-card h3 { margin: 34px 0 12px; font-size: 23px; line-height: 1.25; }
.experience-card p { margin: 0; color: #8fa0b1; font-size: 14px; line-height: 1.7; }

/* Agencies */
.agency-section { padding: 110px 0 130px; }
.agency-intro { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: end; padding: 60px 0; }
.agency-intro h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(56px,6vw,100px); font-weight: 400; text-transform: uppercase; line-height: .92; }
.agency-intro p { margin: 0; color: #98a7b6; font-size: 17px; line-height: 1.7; }
.agency-list { border-top: 1px solid var(--line); }
.agency-row { display: grid; grid-template-columns: 80px 170px 1fr 60px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.agency-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--agency-colour) 17%, transparent), transparent 72%); transform: translateX(-101%); transition: transform .35s ease; }
.agency-row:hover::before { transform: translateX(0); }
.agency-row > * { position: relative; z-index: 1; }
.agency-count { color: #536374; font-size: 11px; font-weight: 900; }
.agency-row > strong { color: var(--agency-colour); font-family: Impact, sans-serif; font-size: 58px; font-weight: 400; letter-spacing: .03em; }
.agency-row h3 { margin: 0; font-size: clamp(20px,2.2vw,34px); }
.agency-row p { margin: 5px 0 0; color: #738394; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.agency-arrow { justify-self: end; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 18px; transition: background .2s, border-color .2s; }
.agency-row:hover .agency-arrow { background: var(--agency-colour); border-color: var(--agency-colour); }

/* Path */
.path-section { padding: 110px 0; background: #0a141f; }
.path-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 100px; align-items: center; }
.path-copy h2 { margin: 15px 0 25px; font-family: Impact, sans-serif; font-size: clamp(58px,5.6vw,96px); font-weight: 400; line-height: .92; text-transform: uppercase; }
.path-copy p { max-width: 580px; margin: 0 0 30px; color: #9aabba; font-size: 17px; line-height: 1.75; }
.path-board { border: 1px solid var(--line); }
.path-board a { min-height: 148px; padding: 28px 30px; display: grid; grid-template-columns: 100px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); transition: background .2s; }
.path-board a:last-child { border-bottom: 0; }
.path-board a:hover { background: var(--blue-soft); }
.path-board small { color: var(--blue-2); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.path-board b { font-size: 28px; }
.path-board span { color: #8797a8; font-size: 11px; font-weight: 800; }
.closing-banner { min-height: 650px; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(120deg, rgba(5,10,16,.15), rgba(5,10,16,.82)), url('../img/hero-scene.png') center 63% / cover; border-top: 1px solid var(--line); }
.closing-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #050a10 0, transparent 35%); }
.closing-content { position: relative; z-index: 1; width: var(--shell); text-align: center; }
.closing-content > span { font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.closing-content h2 { margin: 24px 0 38px; font-family: Impact, sans-serif; font-size: clamp(66px,8vw,132px); font-weight: 400; line-height: .87; text-transform: uppercase; }
.closing-content h2 em { color: var(--blue-2); font-style: normal; }
.closing-content > div { display: flex; justify-content: center; align-items: center; gap: 35px; }

/* Page covers */
.page-cover { min-height: 610px; padding: 168px 0 85px; display: flex; align-items: flex-end; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; background: radial-gradient(circle at 74% 18%, rgba(11,141,255,.18), transparent 32%), linear-gradient(135deg,#07101a,#050a10 70%); }
.page-cover::before { content: ""; position: absolute; right: -7%; top: -20%; width: 52vw; height: 52vw; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.page-cover-grid { position: relative; z-index: 1; width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: end; }
.page-cover h1 { margin: 18px 0 24px; font-family: Impact, sans-serif; font-size: clamp(70px,7.2vw,124px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.page-cover h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--blue-2); }
.page-cover p { max-width: 740px; margin: 0; color: #9aa9b9; font-size: 18px; line-height: 1.7; }
.rule-stat { justify-self: end; display: flex; align-items: end; gap: 16px; }
.rule-stat b { color: var(--blue); font-family: Impact, sans-serif; font-size: 154px; font-weight: 400; line-height: .7; }
.rule-stat span { padding-bottom: 7px; color: #7e8d9d; font-size: 11px; font-weight: 900; letter-spacing: .14em; line-height: 1.35; }
.page-number { justify-self: end; color: rgba(255,255,255,.055); font-family: Impact, sans-serif; font-size: 250px; line-height: .65; }

/* Rules */
.rulebook-section { background: #07101a; }
.rulebook-shell { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 70px; align-items: start; }
.rulebook-tools { position: sticky; top: 72px; min-height: calc(100vh - 72px); padding: 70px 0; border-right: 1px solid var(--line); }
.rulebook-tools-inner { padding-right: 40px; }
.rule-search { height: 54px; margin-top: 20px; display: flex; align-items: center; gap: 12px; padding: 0 16px; border: 1px solid var(--line); background: #0b1621; }
.rule-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,141,255,.1); }
.rule-search svg { width: 18px; flex: 0 0 auto; fill: none; stroke: #7c8d9d; stroke-width: 1.7; }
.rule-search input { width: 100%; border: 0; outline: 0; background: transparent; color: white; font-size: 13px; }
.rule-search input::placeholder { color: #647486; }
.tool-button { width: 100%; min-height: 48px; margin-top: 12px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); background: transparent; color: #dbe5ee; font-size: 11px; font-weight: 850; text-transform: uppercase; cursor: pointer; }
.tool-button:hover { border-color: var(--blue); background: var(--blue-soft); }
.tool-button span { color: var(--blue-2); font-size: 19px; }
.rulebook-note { margin-top: 36px; padding: 24px; border-left: 2px solid var(--blue); background: #0b1621; }
.rulebook-note b { font-size: 13px; text-transform: uppercase; }
.rulebook-note p { margin: 10px 0 0; color: #8798aa; font-size: 12px; line-height: 1.65; }
.rules-progress { margin-top: 30px; display: flex; align-items: end; gap: 10px; }
.rules-progress span { color: var(--blue-2); font-family: Impact, sans-serif; font-size: 50px; line-height: 1; }
.rules-progress small { padding-bottom: 6px; color: #6f8091; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.rulebook-content { padding: 70px 0 120px; }
.rulebook-heading { display: grid; grid-template-columns: 1fr minmax(300px,520px); gap: 70px; align-items: start; margin-bottom: 35px; }
.rulebook-heading span { color: #6d7d8d; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.rulebook-heading p { margin: 0; color: #8f9fb0; font-size: 13px; line-height: 1.7; }
.rule-accordion { border-top: 1px solid var(--line); }
.rule-category { border-bottom: 1px solid var(--line); }
.rule-category[hidden] { display: none; }
.rule-category summary { list-style: none; min-height: 98px; display: grid; grid-template-columns: 65px 1fr 150px 40px; gap: 18px; align-items: center; cursor: pointer; transition: background .2s; }
.rule-category summary::-webkit-details-marker { display: none; }
.rule-category summary:hover { background: rgba(255,255,255,.025); }
.rule-index { color: var(--blue-2); font-size: 11px; font-weight: 900; }
.rule-summary-title { font-size: 24px; font-weight: 720; }
.rule-summary-meta { color: #68798a; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.rule-toggle { justify-self: end; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue-2); font-size: 20px; transition: transform .25s, background .2s; }
.rule-category[open] .rule-toggle { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: white; }
.rule-content { margin: 0 0 32px 65px; padding: 30px 38px; background: #0b1621; border-left: 2px solid var(--blue); }
.rule-content > p:first-child { margin-top: 0; }
.rule-content p { color: #a5b4c3; font-size: 14px; line-height: 1.75; }
.rule-content ul, .rule-content ol { margin: 17px 0 22px; padding-left: 0; list-style: none; }
.rule-content li { position: relative; margin: 9px 0; padding-left: 24px; color: #a7b7c6; font-size: 14px; line-height: 1.65; }
.rule-content li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 2px; background: var(--blue); }
.rule-subsection { padding: 28px 0; border-top: 1px solid var(--line); }
.rule-subsection:first-of-type { margin-top: 25px; }
.rule-subsection:last-child { padding-bottom: 0; }
.rule-subsection h3 { margin: 0 0 16px; font-size: 18px; }
.rule-subsection h3 span { display: inline-block; min-width: 58px; margin-right: 16px; color: var(--blue-2); font-size: 10px; font-weight: 900; }
.empty-rules { padding: 80px 20px; text-align: center; border: 1px solid var(--line); }
.empty-rules b { font-family: Impact, sans-serif; color: var(--blue-2); font-size: 54px; font-weight: 400; }
.empty-rules p { color: var(--muted); }

/* Applications */
.application-section, .partner-section, .department-details { padding: 90px 0 120px; }
.application-grid { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.application-card { min-height: 360px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #08111a; transition: background .2s; }
.application-card:hover { background: #0c1824; }
.application-card-top { display: flex; justify-content: space-between; align-items: center; }
.application-card-top > span { color: var(--blue-2); font-size: 11px; font-weight: 900; }
.application-card-top small { color: #6e7e8f; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.application-card h2 { margin: 52px 0 17px; font-size: 32px; }
.application-card p { margin: 0; color: #91a1b2; line-height: 1.75; }
.application-card > a { margin-top: auto; padding-top: 34px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: white; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.application-card > a span { color: var(--blue-2); font-size: 18px; }
.process-panel { margin-top: 90px; padding: 55px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; background: var(--blue); }
.process-panel h2 { margin: 13px 0 0; font-family: Impact, sans-serif; font-size: 56px; font-weight: 400; text-transform: uppercase; }
.process-panel .eyebrow { color: white; }
.process-panel ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-panel li { counter-increment: step; display: grid; grid-template-columns: 50px 180px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.process-panel li::before { content: "0" counter(step); font-weight: 900; opacity: .7; }
.process-panel li b { font-size: 14px; }
.process-panel li span { color: rgba(255,255,255,.82); font-size: 13px; }

/* Partners */
.partner-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.partner-card { min-height: 460px; padding: 34px; display: flex; flex-direction: column; background: #08111a; transition: background .2s; }
.partner-card:hover { background: #0d1a27; }
.partner-card-index { color: var(--blue-2); font-size: 11px; font-weight: 900; }
.partner-card > span { margin-top: 65px; color: #6d7d8d; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.partner-card h2 { margin: 13px 0 20px; font-size: 31px; line-height: 1.2; }
.partner-card p { margin: 0; color: #90a1b2; line-height: 1.75; }
.partner-card b { margin-top: auto; color: white; font-size: 11px; text-transform: uppercase; }
.partner-callout { margin-top: 70px; padding: 44px 50px; display: flex; justify-content: space-between; align-items: center; gap: 40px; border: 1px solid var(--line); background: radial-gradient(circle at right, rgba(11,141,255,.14), transparent 45%), #0a141e; }
.partner-callout h2 { margin: 12px 0 0; font-size: 31px; }

/* Department */
.department-cover { min-height: 720px; padding: 160px max(44px, calc((100vw - 1440px)/2)) 90px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.5fr); align-items: end; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 25%, color-mix(in srgb, var(--department-accent) 28%, transparent), transparent 35%), linear-gradient(135deg,#07111b,#050a10 72%); border-bottom: 1px solid var(--line); }
.department-cover::before { content: ""; position: absolute; top: 0; right: 5%; width: 36%; height: 100%; background: repeating-linear-gradient(90deg, transparent 0 30px, rgba(255,255,255,.025) 30px 31px); transform: skewX(-15deg); }
.department-cover-code { position: absolute; left: -15px; bottom: -50px; color: rgba(255,255,255,.035); font-family: Impact, sans-serif; font-size: min(32vw, 510px); line-height: .8; letter-spacing: -.03em; }
.department-cover-content { position: relative; z-index: 2; max-width: 920px; }
.department-cover-content h1 { margin: 20px 0 25px; font-family: Impact, sans-serif; font-size: clamp(70px,7.5vw,128px); font-weight: 400; line-height: .88; text-transform: uppercase; }
.department-cover-content p { max-width: 740px; color: #a0b0c0; font-size: 18px; line-height: 1.75; }
.department-cover-content > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.department-badge { position: relative; z-index: 2; justify-self: end; width: 220px; height: 220px; display: grid; place-content: center; text-align: center; border: 1px solid color-mix(in srgb, var(--department-accent) 75%, white); border-radius: 50%; box-shadow: 0 0 0 12px rgba(255,255,255,.025), inset 0 0 50px color-mix(in srgb, var(--department-accent) 12%, transparent); }
.department-badge span, .department-badge small { color: #8292a2; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.department-badge b { margin: 8px 0; color: var(--department-accent); font-size: 18px; }
.department-overview { display: grid; grid-template-columns: minmax(0,1fr) 500px; gap: 90px; align-items: end; padding-bottom: 70px; }
.department-overview h2 { margin: 15px 0 0; font-family: Impact, sans-serif; font-size: clamp(52px,5vw,86px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.department-overview > p { margin: 0; color: #93a3b3; font-size: 17px; line-height: 1.75; }
.focus-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.focus-card { min-height: 310px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.focus-card span { color: var(--department-accent); font-size: 10px; font-weight: 900; }
.focus-card h3 { margin: 70px 0 18px; font-size: 22px; line-height: 1.3; }
.focus-card p { color: #8495a5; font-size: 13px; line-height: 1.7; }
.department-path { margin-top: 80px; padding: 48px 52px; display: flex; justify-content: space-between; align-items: center; gap: 60px; background: color-mix(in srgb, var(--department-accent) 12%, #08111a); border: 1px solid color-mix(in srgb, var(--department-accent) 30%, var(--line)); }
.department-path h2 { margin: 12px 0; font-size: 34px; }
.department-path p { margin: 0; color: #9aabba; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #04080d; }
.footer-main { width: var(--shell); margin: 0 auto; padding: 80px 0 60px; display: grid; grid-template-columns: minmax(0,1fr) minmax(500px,.95fr); gap: 90px; }
.footer-logo { display: flex; align-items: center; gap: 17px; }
.footer-logo img { filter: drop-shadow(0 0 18px rgba(11,141,255,.3)); }
.footer-logo div { display: grid; }
.footer-logo b { font-size: 17px; letter-spacing: .1em; }
.footer-logo span { color: var(--blue-2); font-size: 11px; font-weight: 800; }
.footer-intro p { max-width: 520px; margin: 27px 0 0; color: #778797; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 45px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links b { margin-bottom: 10px; color: white; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #788898; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-legal { width: var(--shell); margin: 0 auto; min-height: 62px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: #5f6e7d; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.not-found { min-height: 780px; padding: 160px 30px 80px; display: grid; place-content: center; justify-items: center; text-align: center; }
.not-found > span { color: rgba(11,141,255,.2); font-family: Impact, sans-serif; font-size: 220px; line-height: .8; }
.not-found h1 { margin: 20px 0 5px; font-family: Impact, sans-serif; font-size: 55px; font-weight: 400; text-transform: uppercase; }
.not-found p { color: var(--muted); }
.not-found .pill-button { margin-top: 22px; }

@media (max-width: 1180px) {
    :root { --shell: min(100% - 48px, 1100px); }
    .topbar { grid-template-columns: 220px 1fr 190px; padding: 0 24px; }
    .primary-nav { gap: 18px; }
    .landing-grid { grid-template-columns: 1fr 390px; gap: 34px; }
    .hero-facts div { min-width: 145px; }
    .manifesto { grid-template-columns: 100px 1fr; }
    .manifesto-quote { grid-column: 2; min-height: 270px; }
    .experience-layout { grid-template-columns: 1fr; gap: 50px; }
    .agency-intro { grid-template-columns: 1fr 360px; }
    .path-grid { gap: 55px; }
    .rulebook-shell { grid-template-columns: 285px 1fr; gap: 45px; }
    .rulebook-heading { grid-template-columns: 1fr; gap: 15px; }
    .focus-grid { grid-template-columns: 1fr 1fr; }
    .department-overview { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 920px) {
    :root { --shell: min(100% - 36px, 820px); }
    .topbar { height: 72px; grid-template-columns: 1fr auto; padding: 0 18px; background: rgba(5,10,16,.95); border-bottom: 1px solid var(--line); }
    .site-brand img { width: 42px; height: 42px; }
    .topbar-actions { display: none; }
    .nav-toggle { display: grid; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
    .nav-toggle span { height: 2px; background: white; transition: .2s; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .primary-nav { position: fixed; inset: 72px 0 0; padding: 24px 18px 50px; display: block; overflow-y: auto; background: #050a10; transform: translateX(100%); transition: transform .3s ease; }
    body.nav-open .primary-nav { transform: none; }
    .primary-nav > a, .nav-cluster-trigger { width: 100%; min-height: 68px; border-bottom: 1px solid var(--line); justify-content: flex-start; font-size: 20px; }
    .primary-nav > a::after, .nav-cluster-trigger::after { display: none; }
    .nav-cluster { height: auto; display: block; }
    .nav-cluster-trigger svg { margin-left: auto; }
    .nav-cluster-menu { position: static; width: 100%; padding: 0; transform: none; background: #08111a; box-shadow: none; display: none; opacity: 1; visibility: visible; }
    .nav-cluster.is-open .nav-cluster-menu { display: block; transform: none; }
    .nav-cluster-menu a { padding: 17px 20px; }
    .landing-hero { min-height: 1180px; height: auto; max-height: none; }
    .landing-media { background-position: 60% center; }
    .landing-shade { background: linear-gradient(90deg, rgba(5,10,16,.96), rgba(5,10,16,.53)), linear-gradient(0deg,#050a10 0,rgba(5,10,16,.2) 50%,rgba(5,10,16,.4)); }
    .landing-grid { min-height: 1180px; padding-top: 135px; padding-bottom: 100px; grid-template-columns: 1fr; align-content: center; }
    .landing-copy { max-width: 700px; }
    .landing-side { align-self: auto; margin: 0; max-width: 600px; }
    .landing-copy h1 { font-size: clamp(72px,14vw,112px); }
    .landing-copy h1 em { margin-left: 25px; }
    .scroll-cue { display: none; }
    .manifesto { min-height: 0; padding: 90px 0; grid-template-columns: 1fr; gap: 45px; }
    .manifesto-index { display: none; }
    .manifesto-quote { grid-column: auto; }
    .experience-cards { grid-template-columns: 1fr 1fr; }
    .agency-intro { grid-template-columns: 1fr; gap: 25px; }
    .agency-row { grid-template-columns: 50px 120px 1fr 50px; }
    .agency-row > strong { font-size: 43px; }
    .path-grid { grid-template-columns: 1fr; }
    .page-cover-grid { grid-template-columns: 1fr 170px; }
    .rule-stat b { font-size: 110px; }
    .rulebook-shell { grid-template-columns: 1fr; }
    .rulebook-tools { position: static; min-height: 0; padding: 45px 0 0; border-right: 0; }
    .rulebook-tools-inner { padding: 0; }
    .rulebook-note, .rules-progress { display: none; }
    .rulebook-content { padding-top: 45px; }
    .application-grid { grid-template-columns: 1fr; }
    .process-panel { grid-template-columns: 1fr; gap: 40px; }
    .partner-grid { grid-template-columns: 1fr; }
    .partner-card { min-height: 360px; }
    .department-cover { grid-template-columns: 1fr; }
    .department-badge { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    .brand-wordmark { display: none; }
    .landing-hero, .landing-grid { min-height: 1050px; }
    .landing-grid { padding-top: 105px; gap: 45px; }
    .micro-label { margin-bottom: 20px; }
    .landing-copy h1 { font-size: clamp(58px,18vw,88px); line-height: .82; }
    .landing-copy h1 em { margin-left: 12px; -webkit-text-stroke-width: 1px; }
    .hero-slogan { font-size: 13px; letter-spacing: .11em; }
    .hero-description { font-size: 15px; }
    .hero-buttons { display: grid; }
    .hero-buttons .pill-button { width: 100%; }
    .hero-facts { width: 100%; }
    .hero-facts div { min-width: 0; flex: 1; padding: 13px 10px; gap: 8px; }
    .hero-facts span { font-size: 8px; }
    .live-service { grid-template-columns: 40px 1fr; }
    .service-value { grid-column: 2; text-align: left; }
    .service-value b { display: inline; font-size: 18px; }
    .service-value span { margin-left: 6px; }
    .side-caption { display: none; }
    .manifesto { padding: 75px 0; }
    .manifesto-copy h2, .experience-heading h2, .agency-intro h2, .path-copy h2 { font-size: 50px; }
    .manifesto-copy p, .experience-heading p, .agency-intro p, .path-copy p { font-size: 15px; }
    .manifesto-quote { padding: 28px; }
    .manifesto-quote p { font-size: 20px; }
    .experience-section, .agency-section, .path-section { padding: 75px 0; }
    .experience-cards { grid-template-columns: 1fr; }
    .experience-card { min-height: 260px; }
    .agency-row { grid-template-columns: 38px 80px 1fr 40px; min-height: 120px; gap: 8px; }
    .agency-row > strong { font-size: 31px; }
    .agency-row h3 { font-size: 16px; }
    .agency-row p { font-size: 8px; }
    .agency-arrow { width: 34px; height: 34px; }
    .path-board a { min-height: 115px; padding: 20px; grid-template-columns: 1fr auto; gap: 8px; }
    .path-board small { grid-column: 1 / -1; }
    .path-board b { font-size: 21px; }
    .path-board span { font-size: 0; }
    .path-board span::after { content: "↗"; font-size: 18px; color: var(--blue-2); }
    .closing-banner { min-height: 520px; }
    .closing-content h2 { font-size: 56px; }
    .closing-content > div { flex-direction: column; gap: 22px; }
    .page-cover { min-height: 520px; padding-top: 130px; }
    .page-cover-grid { grid-template-columns: 1fr; }
    .page-cover h1 { font-size: 60px; }
    .rule-stat, .page-number { display: none; }
    .rulebook-heading { display: block; }
    .rulebook-heading p { margin-top: 14px; }
    .rule-category summary { min-height: 88px; grid-template-columns: 38px 1fr 36px; gap: 10px; }
    .rule-summary-title { font-size: 17px; }
    .rule-summary-meta { display: none; }
    .rule-content { margin-left: 0; padding: 24px 20px; }
    .rule-subsection h3 span { display: block; margin-bottom: 6px; }
    .application-card { min-height: 320px; padding: 26px; }
    .process-panel { padding: 30px 23px; }
    .process-panel h2 { font-size: 45px; }
    .process-panel li { grid-template-columns: 35px 1fr; }
    .process-panel li span { grid-column: 2; }
    .partner-callout { padding: 32px 25px; flex-direction: column; align-items: flex-start; }
    .department-cover { min-height: 650px; padding: 130px 18px 70px; }
    .department-cover-content h1 { font-size: 58px; }
    .department-cover-content p { font-size: 15px; }
    .department-cover-content > div { display: grid; }
    .focus-grid { grid-template-columns: 1fr; }
    .focus-card { min-height: 240px; }
    .department-path { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
    .footer-main { padding: 60px 0 45px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-legal { padding: 18px 0; display: grid; gap: 6px; }
}

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

.ADI-company-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    box-shadow: var(--shadow);
    gap: 42px;
    padding: 42px;
    background: #07101a;
    border: 1px solid var(--border);
    border-radius: 24px;
}

.ADI-container {
    width: var(--container);
    margin-inline: auto;
    padding: 20px;
}

