:root {
    color-scheme: dark;
    --canvas: #070f1c;
    --header: #070f1c;
    --panel: #07111b;
    --surface: #08131f;
    --surface-raised: #0b1826;
    --line: #1d2b3b;
    --line-strong: #26384a;
    --text: #f4f6fa;
    --text-soft: #d3dae4;
    --muted: #8f9caf;
    --muted-dark: #68768a;
    --blue: #1768ee;
    --blue-light: #4f91ff;
    --gold: #dcae4b;
    --gold-light: #e1ba69;
    --green: #63d489;
    --red: #ff7f79;
    --max-width: 1180px;
    --mobile-nav-height: 66px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    background: var(--canvas);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-dialog-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

a {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    z-index: 5000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #ffffff;
    color: #07111b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
}

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

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: var(--header);
}

.site-header__inner {
    display: flex;
    width: min(100%, var(--max-width));
    min-height: 94px;
    margin: 0 auto;
    padding: max(14px, env(safe-area-inset-top)) 12px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.brand-lockup {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.brand-lockup__logo {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    object-fit: cover;
}

.brand-lockup__copy {
    display: block;
    min-width: 0;
}

.brand-lockup__copy h1 {
    margin: 0;
    color: #f8f8f6;
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.22;
    white-space: nowrap;
}

.brand-lockup__copy small {
    display: block;
    margin-top: 5px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.desktop-nav {
    display: none;
}

.join-trigger {
    display: inline-flex;
    width: 92px;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid #397fff;
    border-radius: 10px;
    background: var(--blue);
    box-shadow: 0 9px 24px rgba(23, 104, 238, 0.23);
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 780;
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.join-trigger:hover {
    border-color: #6aa0ff;
    background: #1f73ff;
}

.join-trigger:active {
    transform: translateY(1px);
}

.home-main {
    position: relative;
    width: min(calc(100% - 20px), var(--max-width));
    margin: 0 auto;
    padding: 14px 0 calc(var(--mobile-nav-height) + 36px + env(safe-area-inset-bottom));
}

.home-account-status {
    display: flex;
    min-height: 58px;
    margin-bottom: 12px;
    padding: 10px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #08131f;
}

.home-account-status__copy { display: grid; min-width: 0; grid-template-columns: auto auto; align-items: baseline; gap: 2px 8px; }
.home-account-status__copy span { color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .06em; }
.home-account-status__copy strong { color: var(--text); font-size: 13px; line-height: 1.35; }
.home-account-status__copy small { grid-column: 1 / -1; color: var(--muted); font-size: 10px; line-height: 1.4; }
.home-account-status[data-state="member"] .home-account-status__copy strong { color: var(--green); }
.home-account-status[data-state="visitor-account"] .home-account-status__copy strong { color: var(--gold-light); }
.home-account-status[data-state="error"] .home-account-status__copy strong { color: var(--red); }
.home-account-status > a {
    display: inline-flex;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    color: #dce5f1;
    background: #0c1a29;
    font-size: 11px;
    font-weight: 720;
    text-decoration: none;
}

@media (max-width: 430px) {
    .home-account-status { align-items: stretch; }
    .home-account-status > a { min-width: 72px; }
}

.compat-anchor {
    position: absolute;
    top: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.content-panel {
    padding: 18px 12px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.content-section {
    min-width: 0;
    scroll-margin-top: 92px;
}

.content-section + .content-section {
    margin-top: 24px;
}

.section-heading {
    display: flex;
    margin: 0 2px 12px;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #1b2a39;
}

.section-heading > div {
    min-width: 0;
}

.section-heading p {
    margin: 0 0 3px;
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    position: relative;
    margin: 0;
    padding-bottom: 9px;
    color: #f7f8f9;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

.section-heading h2::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 35px;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    content: "";
}

.section-heading > span {
    padding-bottom: 10px;
    color: #b89146;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.xdao-card {
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.research-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e4e8ef;
    font-size: 11px;
}

.xdao-heading .research-label {
    margin-bottom: 6px;
}

.research-label i {
    width: 16px;
    color: var(--gold);
    text-align: center;
}

.research-label strong {
    color: var(--gold);
    font-size: 11px;
    font-weight: 720;
}

.xdao-heading {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    margin-top: 0;
    align-items: center;
    gap: 13px;
}

.xdao-logo {
    display: grid;
    width: 76px;
    height: 76px;
    overflow: hidden;
    place-items: center;
    border: 1px solid #192637;
    border-radius: 10px;
    background: #060d15;
}

.xdao-logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.xdao-heading h3 {
    margin: 0;
    color: #f5f7fa;
    font-size: 17px;
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.snapshot-meta {
    display: flex;
    margin: 9px 0 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.snapshot-meta time {
    color: #9aa8ba;
    font-size: 10.5px;
    font-variant-numeric: tabular-nums;
}

.snapshot-meta span {
    padding: 3px 5px;
    border: 1px solid #288e51;
    border-radius: 5px;
    color: var(--green);
    font-size: 9px;
    font-weight: 700;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 13px 0 0;
    border-top: 1px solid #1c2b3b;
    border-bottom: 1px solid #1c2b3b;
}

.metric-grid > div {
    min-width: 0;
    padding: 11px 2px 10px;
    text-align: center;
}

.metric-grid > div + div {
    border-left: 1px solid #1c2b3b;
}

.metric-grid dd {
    margin: 0;
    color: #4c8fff;
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.metric-grid dd span {
    font-size: 10px;
}

.metric-grid dt {
    margin-top: 4px;
    color: #b4bfce;
    font-size: 9px;
    white-space: nowrap;
}

.xdao-card__footer {
    display: flex;
    margin-top: 11px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.xdao-card__footer p {
    display: flex;
    min-width: 0;
    margin: 0;
    align-items: center;
    gap: 6px;
    color: #d8dde5;
    font-size: 9.5px;
    line-height: 1.35;
}

.xdao-card__footer p > span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d5a43d;
    box-shadow: 0 0 8px rgba(213, 164, 61, 0.42);
}

.xdao-card__footer b {
    overflow: hidden;
    font-weight: 540;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xdao-card__footer a {
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    color: var(--blue-light);
    font-size: 11px;
    font-weight: 740;
    text-decoration: none;
}

.xdao-card__footer a i {
    font-size: 10px;
}

.update-list {
    display: grid;
}

.update-row {
    display: grid;
    width: 100%;
    min-height: 92px;
    padding: 10px 3px;
    align-items: center;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 10px;
    border-bottom: 1px solid #1b2a39;
    color: inherit;
    text-align: left;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
}

.update-row:hover {
    background: rgba(255, 255, 255, 0.025);
}

.update-row:active {
    transform: translateY(1px);
}

.update-thumb {
    position: relative;
    display: grid;
    width: 58px;
    height: 58px;
    overflow: hidden;
    place-items: center;
    border: 1px solid #2a3a4c;
    border-radius: 9px;
    background: #07101a;
}

.update-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-thumb--art img {
    object-position: 80% center;
}

.update-thumb:not(.update-thumb--art) img {
    padding: 4px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    color: #d7e4f6;
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.03em;
}

.update-thumb.has-fallback img {
    display: none;
}

.update-thumb.has-fallback .logo-fallback {
    display: block;
}

.update-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.update-copy strong {
    color: #f2f4f7;
    font-size: 13.5px;
    font-weight: 730;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.update-metric {
    display: block;
    margin-top: 5px;
    color: #bbc6d4;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.update-metric .trend {
    font-weight: 720;
}

.update-metric .trend.is-positive {
    color: var(--green);
}

.update-metric .trend.is-negative {
    color: var(--red);
}

.update-signal {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9.5px;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.update-signal--flow {
    background: rgba(47, 118, 255, 0.12);
    color: #77a7ff;
}

.update-signal--scope {
    background: rgba(224, 183, 99, 0.11);
    color: #d7b56d;
}

.update-context {
    display: block;
    margin-top: 4px;
    color: #8998aa;
    font-size: 9.5px;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
}

.update-copy time {
    display: block;
    margin-top: 4px;
    color: #8e9bad;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.update-row[data-state="unavailable"] .update-metric,
.update-row[data-state="unavailable"] .update-signal,
.update-row[data-state="unavailable"] .update-context,
.update-row[data-state="unavailable"] time {
    color: #c49a53;
}

.update-row > i {
    color: #8794a6;
    font-size: 11px;
    text-align: right;
}

.archive-summary {
    display: flex;
    min-height: 66px;
    margin: 0 2px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #1b2a39;
    cursor: pointer;
    list-style: none;
}

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

.archive-summary::marker {
    content: "";
}

.archive-summary:focus-visible {
    border-radius: 8px;
    outline: 2px solid #5d91e9;
    outline-offset: -2px;
}

.archive-summary__copy {
    display: block;
    min-width: 0;
}

.archive-summary__copy small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.archive-summary__title-row {
    position: relative;
    display: flex;
    min-width: 0;
    padding-bottom: 9px;
    align-items: center;
    gap: 8px;
}

.archive-summary__title-row::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 35px;
    height: 3px;
    border-radius: 999px;
    background: #8a744c;
    content: "";
}

.archive-summary__title {
    color: #f7f8f9;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

.archive-count {
    padding: 3px 6px;
    flex: 0 0 auto;
    border: 1px solid #65583f;
    border-radius: 999px;
    color: #b5a27c;
    font-size: 9px;
    font-weight: 720;
    line-height: 1.25;
}

.archive-toggle {
    display: inline-flex;
    min-width: 58px;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    color: #8f9bad;
    font-size: 10px;
    font-weight: 680;
}

.archive-toggle i {
    color: #a28a5d;
    font-size: 10px;
    transition: transform 160ms ease;
}

.archive-section:not([open]) .archive-toggle__expanded,
.archive-section[open] .archive-toggle__collapsed {
    display: none;
}

.archive-section[open] .archive-toggle i {
    transform: rotate(180deg);
}

.archive-panel {
    padding-top: 3px;
}

.archive-list {
    display: grid;
}

.archive-row {
    display: grid;
    width: 100%;
    min-height: 72px;
    padding: 9px 3px;
    align-items: center;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 10px;
    border-bottom: 1px solid #182635;
    color: inherit;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
}

.archive-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.archive-row:active {
    transform: translateY(1px);
}

.archive-thumb {
    width: 44px;
    height: 44px;
    border-color: #263341;
    border-radius: 8px;
    filter: saturate(0.72);
    opacity: 0.86;
}

.archive-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.archive-title-line {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.archive-title-line strong {
    overflow: hidden;
    color: #cbd2dc;
    font-size: 12.5px;
    font-weight: 690;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.archive-badge {
    padding: 2px 5px;
    flex: 0 0 auto;
    border: 1px solid #65583f;
    border-radius: 5px;
    color: #b5a27c;
    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.25;
}

.archive-copy time {
    margin-top: 5px;
    color: #758294;
    font-size: 9.5px;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
}

.archive-row > i {
    color: #667385;
    font-size: 10px;
    text-align: right;
}

.archive-note {
    display: flex;
    margin: 11px 2px 0;
    align-items: flex-start;
    gap: 7px;
    color: #697688;
    font-size: 9px;
    line-height: 1.5;
}

.archive-note i {
    margin-top: 2px;
    color: #8f794f;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--surface);
}

.tool-grid > a {
    display: grid;
    min-width: 0;
    min-height: 78px;
    padding: 10px;
    align-items: center;
    grid-template-columns: 38px minmax(0, 1fr) 14px;
    gap: 8px;
    color: inherit;
    text-align: left;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
}

.tool-grid > a + a {
    border-left: 1px solid var(--line-strong);
}

.tool-grid > a:hover {
    background: rgba(255, 255, 255, 0.025);
}

.tool-grid > a:active {
    transform: translateY(1px);
}

.tool-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #8b6729;
    border-radius: 8px;
    background: #201a10;
    color: #e2b34e;
}

.tool-icon i {
    font-size: 17px;
}

.tool-copy {
    min-width: 0;
}

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

.tool-copy strong {
    color: #f4f6f9;
    font-size: 12px;
    font-weight: 740;
}

.tool-copy small {
    margin-top: 4px;
    color: #7f8ea1;
    font-size: 8.5px;
    line-height: 1.35;
}

.tool-grid > a > i {
    color: #8592a4;
    font-size: 11px;
}

.site-footer {
    margin: 22px 12px 0;
    padding: 13px 0 4px;
    border-top: 1px solid #152231;
    color: #667487;
    font-size: 9px;
    line-height: 1.65;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

.mobile-nav {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
    padding: 7px 12px env(safe-area-inset-bottom);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #172638;
    background: rgba(3, 8, 14, 0.97);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.mobile-nav a {
    display: flex;
    min-width: 44px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #8a95a4;
    font-size: 9.5px;
    text-decoration: none;
}

.mobile-nav a i {
    font-size: 19px;
}

.mobile-nav a.is-active {
    color: #3783ff;
}

.join-overlay {
    position: fixed;
    z-index: 3000;
    inset: 0;
}

.join-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 4, 10, 0.7);
    cursor: pointer;
    opacity: 0;
    transition: opacity 180ms ease;
}

.join-sheet {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: min(72vh, 560px);
    overflow-y: auto;
    padding: 9px 16px calc(22px + env(safe-area-inset-bottom));
    border: 1px solid #283a4c;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    outline: none;
    background: #08131f;
    box-shadow: 0 -22px 52px rgba(0, 0, 0, 0.52);
    color: var(--text);
    transform: translateY(105%);
    transition: transform 210ms cubic-bezier(0.22, 1, 0.36, 1);
}

.join-overlay.is-open .join-backdrop {
    opacity: 1;
}

.join-overlay.is-open .join-sheet {
    transform: translateY(0);
}

.join-sheet__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 13px;
    border-radius: 999px;
    background: #526073;
}

.join-sheet > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.join-sheet h2 {
    margin: 0;
    color: #f7f8fa;
    font-size: 20px;
    font-weight: 790;
    letter-spacing: -0.03em;
}

.join-sheet header p {
    margin: 5px 0 0;
    color: #8391a4;
    font-size: 11px;
}

.join-close {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #2b3c50;
    border-radius: 10px;
    background: #0b1928;
    color: #a9b5c4;
    cursor: pointer;
}

.contact-list {
    display: grid;
    margin-top: 18px;
    gap: 8px;
}

.contact-list a {
    display: grid;
    min-height: 64px;
    padding: 9px 11px;
    align-items: center;
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    gap: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--surface-raised);
    color: #edf1f6;
    text-decoration: none;
    transition: border-color 150ms ease, background-color 150ms ease;
}

.contact-list a:hover {
    border-color: #385170;
    background: #0d1d2e;
}

.contact-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #29476e;
    border-radius: 9px;
    background: #0b1e36;
    color: var(--blue-light);
}

.contact-list a > span:nth-child(2) {
    min-width: 0;
}

.contact-list strong,
.contact-list small {
    display: block;
}

.contact-list strong {
    font-size: 13px;
    font-weight: 730;
}

.contact-list small {
    margin-top: 3px;
    color: #7d8b9e;
    font-size: 10px;
}

.contact-list a > i {
    color: #7c8a9d;
    font-size: 11px;
}

:focus-visible {
    outline: 2px solid #73a6ff;
    outline-offset: 3px;
}

@media (max-width: 370px) {
    .site-header__inner {
        padding-right: 12px;
        padding-left: 12px;
        gap: 7px;
    }

    .brand-lockup {
        gap: 6px;
    }

    .brand-lockup__logo {
        width: 50px;
        height: 50px;
    }

    .brand-lockup__copy h1 {
        font-size: 14.5px;
    }

    .brand-lockup__copy small {
        font-size: 8.1px;
    }

    .join-trigger {
        width: 88px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 11.5px;
    }

    .home-main {
        width: calc(100% - 16px);
    }

    .content-panel {
        padding-right: 10px;
        padding-left: 10px;
    }

    .xdao-heading {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 10px;
    }

    .xdao-logo {
        width: 68px;
        height: 68px;
    }

    .xdao-logo img {
        width: 61px;
        height: 61px;
    }

    .xdao-heading h3 {
        font-size: 15.5px;
    }

    .metric-grid dd {
        font-size: 14.5px;
    }

    .metric-grid dt {
        font-size: 8px;
    }

    .update-row {
        grid-template-columns: 54px minmax(0, 1fr) 14px;
        gap: 8px;
    }

    .update-thumb {
        width: 54px;
        height: 54px;
    }

    .update-metric,
    .update-copy time {
        font-size: 9.2px;
    }

    .tool-grid > a {
        padding: 8px;
        grid-template-columns: 34px minmax(0, 1fr) 11px;
        gap: 6px;
    }

    .tool-icon {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 94px;
    }

    .site-header {
        position: sticky;
        top: 0;
        background: rgba(7, 15, 28, 0.96);
        backdrop-filter: blur(18px);
    }

    .site-header__inner {
        min-height: 82px;
        padding: 10px 24px;
        gap: 22px;
    }

    .brand-lockup__logo {
        width: 60px;
        height: 60px;
    }

    .brand-lockup__copy h1 {
        font-size: 18px;
    }

    .desktop-nav {
        display: flex;
        min-width: 0;
        margin-left: auto;
        align-items: center;
        gap: 4px;
    }

    .desktop-nav a {
        display: inline-flex;
        min-width: 58px;
        min-height: 44px;
        padding: 0 13px;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        color: #8f9cad;
        font-size: 13px;
        font-weight: 650;
        text-decoration: none;
        transition: background-color 150ms ease, color 150ms ease;
    }

    .desktop-nav a:hover {
        background: #0b1826;
        color: #dce4ef;
    }

    .desktop-nav a.is-active {
        color: #5b98ff;
    }

    .join-trigger {
        width: 108px;
    }

    .home-main {
        width: min(calc(100% - 48px), 840px);
        padding-top: 24px;
        padding-bottom: 42px;
    }

    .content-panel {
        padding: 24px;
        border-radius: 16px;
    }

    .mobile-nav {
        display: none;
    }

    .join-sheet {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(calc(100% - 48px), 560px);
        max-height: min(78vh, 620px);
        padding: 18px 22px 24px;
        border: 1px solid #283a4c;
        border-radius: 16px;
        transform: translate(-50%, -47%);
        opacity: 0;
        transition: transform 190ms ease, opacity 170ms ease;
    }

    .join-overlay.is-open .join-sheet {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .join-sheet__handle {
        display: none;
    }

    .join-sheet h2 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .site-header__inner {
        min-height: 76px;
    }

    .brand-lockup__logo {
        width: 58px;
        height: 58px;
    }

    .brand-lockup__copy h1 {
        font-size: 20px;
    }

    .brand-lockup__copy small {
        font-size: 10px;
    }

    .home-main {
        width: min(calc(100% - 56px), var(--max-width));
        padding-top: 28px;
    }

    .content-panel {
        display: grid;
        padding: 28px;
        grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
        gap: 32px;
    }

    .content-section + .content-section {
        margin-top: 0;
    }

    .tools-section {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .archive-section {
        grid-column: 1 / -1;
    }

    .archive-copy {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 20px;
    }

    .archive-copy time {
        margin-top: 0;
        flex: 0 0 auto;
    }

    .section-heading {
        margin-bottom: 15px;
    }

    .xdao-card {
        padding: 20px;
    }

    .xdao-heading {
        grid-template-columns: 84px minmax(0, 1fr);
        margin-top: 0;
        gap: 17px;
    }

    .xdao-logo {
        width: 84px;
        height: 84px;
    }

    .xdao-logo img {
        width: 75px;
        height: 75px;
    }

    .xdao-heading h3 {
        font-size: 21px;
    }

    .metric-grid {
        margin-top: 18px;
    }

    .metric-grid > div {
        padding: 16px 5px 14px;
    }

    .metric-grid dd {
        font-size: 20px;
    }

    .metric-grid dt {
        font-size: 10px;
    }

    .update-row {
        min-height: 100px;
        padding: 13px 4px;
        grid-template-columns: 62px minmax(0, 1fr) 18px;
    }

    .update-thumb {
        width: 62px;
        height: 62px;
    }

    .archive-row {
        grid-template-columns: 48px minmax(0, 1fr) 18px;
    }

    .update-thumb.archive-thumb {
        width: 48px;
        height: 48px;
    }

    .update-copy strong {
        font-size: 14px;
    }

    .tool-grid > a {
        min-height: 88px;
        padding: 16px 18px;
        grid-template-columns: 44px minmax(0, 1fr) 16px;
        gap: 12px;
    }

    .tool-icon {
        width: 44px;
        height: 44px;
    }

    .tool-copy strong {
        font-size: 14px;
    }

    .tool-copy small {
        font-size: 10px;
    }

    .site-footer {
        margin-top: 26px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (min-width: 1180px) {
    .content-panel {
        grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
        gap: 28px;
    }

    .updates-section .update-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .updates-section .update-row {
        min-height: 112px;
        padding: 12px 2px;
        grid-template-columns: 52px minmax(0, 1fr) 14px;
        gap: 9px;
    }

    .updates-section .update-thumb {
        width: 52px;
        height: 52px;
    }

    .updates-section .update-copy strong {
        font-size: 13px;
    }
}
.focus-list {
    display: grid;
    gap: 12px;
}

.update-row[hidden],
.xdao-card[hidden],
.focus-project-card[hidden] {
    display: none !important;
}

.focus-project-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(224, 183, 99, 0.22);
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(224, 183, 99, 0.08), rgba(10, 24, 40, 0.9));
}

.focus-project-card img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
}

.focus-project-card__copy {
    min-width: 0;
}

.focus-project-card__copy small {
    color: var(--gold, #e0b763);
}

.focus-project-card__copy strong,
.focus-project-card__copy span,
.focus-project-card__copy time {
    display: block;
}

.project-list-toggle {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface-raised);
    color: var(--text-soft);
    font: inherit;
    cursor: pointer;
}

.project-list-toggle i {
    margin-left: 8px;
    transition: transform 180ms ease;
}

.project-list-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.focus-project-card__copy strong {
    margin: 4px 0 6px;
}

.focus-project-card__copy span,
.focus-project-card__copy time {
    color: var(--muted, #8f9bab);
    font-size: 12px;
}
