/* SeekUnknown home — Collider Observatory */

html {
    scroll-behavior: smooth;
}

body.home-event-page {
    --unknown-bg: #03060b;
    --unknown-surface: rgba(7, 14, 23, 0.88);
    --unknown-surface-solid: #08111b;
    --unknown-line: rgba(151, 219, 255, 0.15);
    --unknown-line-strong: rgba(151, 219, 255, 0.32);
    --unknown-text: #f3f8fc;
    --unknown-muted: #8fa6b8;
    --unknown-cyan: #67e8f9;
    --unknown-violet: #8b5cf6;
    --physics-amber: #f4bd66;
    --student-lime: #b8ff5a;
    --student-pink: #ff62c7;
    --student-yellow: #ffd84f;
    --text: var(--unknown-text);
    --muted: var(--unknown-muted);
    --accent: var(--unknown-cyan);
    --accent-2: var(--unknown-violet);
    min-height: 100vh;
    background:
        radial-gradient(circle at 56% 8%, rgba(184, 255, 90, 0.055), transparent 22rem),
        radial-gradient(circle at 82% 5%, rgba(139, 92, 246, 0.14), transparent 28rem),
        radial-gradient(circle at 8% 22%, rgba(103, 232, 249, 0.09), transparent 24rem),
        linear-gradient(180deg, #03060b 0%, #060b12 48%, #020409 100%);
    color: var(--unknown-text);
    font-family: 'Inter', 'Zen Kaku Gothic New', system-ui, sans-serif;
}

body.home-event-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.42) 68%, transparent 100%);
    opacity: 1;
    pointer-events: none;
}

body.home-event-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background:
        linear-gradient(115deg, transparent 0 34%, rgba(103, 232, 249, 0.035) 34.2% 34.35%, transparent 34.6% 100%),
        radial-gradient(circle at 50% 38%, transparent 0 14rem, rgba(139, 92, 246, 0.035) 14.1rem 14.2rem, transparent 14.3rem);
    opacity: 1;
    pointer-events: none;
}

body.home-event-page h1,
body.home-event-page h2,
body.home-event-page h3,
body.home-event-page .section-title {
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
}

body.home-event-page .mono,
body.home-event-page .label,
body.home-event-page .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
}

.home-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 0.72rem 1rem;
    border: 1px solid var(--unknown-cyan);
    background: #07111b;
    color: var(--unknown-text);
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

body.home-event-page .nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    min-height: 76px;
    padding: 12px clamp(20px, 4.5vw, 72px);
    border: 0;
    border-bottom: 1px solid rgba(151, 219, 255, 0.11);
    background: rgba(3, 6, 11, 0.84);
    box-shadow: none;
    backdrop-filter: blur(22px) saturate(130%);
}

body.home-event-page .brand {
    justify-self: start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home-event-page .brand-logo {
    width: clamp(154px, 15vw, 208px);
    height: auto;
    filter: drop-shadow(0 0 18px rgba(103, 232, 249, 0.11));
}

body.home-event-page .nav-links {
    justify-self: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(151, 219, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

body.home-event-page .nav-links a {
    position: relative;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    color: rgba(215, 229, 239, 0.64);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.home-event-page .nav-links a:hover,
body.home-event-page .nav-links a.is-current {
    background: rgba(103, 232, 249, 0.08);
    color: var(--unknown-text);
}

body.home-event-page .nav-links a.is-current::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--unknown-cyan);
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.8);
    transform: translateY(-50%);
}

body.home-event-page .nav-links a.is-current span {
    margin-left: 8px;
}

body.home-event-page .nav-links a.home-nav-library {
    margin-left: 3px;
    padding-left: 31px;
    border: 1px solid rgba(139, 92, 246, 0.24);
    background: rgba(139, 92, 246, 0.045);
    color: rgba(224, 214, 255, 0.78);
}

body.home-event-page .nav-links a.home-nav-library::before {
    content: "";
    position: absolute;
    left: 14px;
    top: calc(50% - 5px);
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: #bca8ff;
    box-shadow: 6px 0 #bca8ff, 0 6px #bca8ff, 6px 6px #bca8ff;
    opacity: 0.72;
}

body.home-event-page .nav-links a.home-nav-library:hover {
    border-color: rgba(139, 92, 246, 0.48);
    background: rgba(139, 92, 246, 0.09);
    color: var(--unknown-text);
}

body.home-event-page .nav-actions {
    justify-self: end;
}

body.home-event-page .nav-auth {
    flex-wrap: nowrap;
}

body.home-event-page .nav .ghost-btn {
    min-height: 36px;
    padding: 8px 12px;
    border-color: rgba(151, 219, 255, 0.14);
    border-radius: 999px;
    background: transparent;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

body.home-event-page #languageToggle {
    min-width: 44px;
    border-color: rgba(139, 92, 246, 0.34);
    color: #d7c7ff;
}

.home-event-shell {
    position: relative;
    z-index: 1;
    width: min(1520px, calc(100% - clamp(28px, 6vw, 96px)));
    margin: 0 auto;
    padding: 0 0 56px;
}

.home-event-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    min-height: auto;
    margin: 0;
    padding: clamp(52px, 6vw, 84px) 0 clamp(42px, 5vw, 68px);
}

.home-event-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
    max-width: 1120px;
    animation: home-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    width: fit-content;
    margin-bottom: clamp(26px, 3vw, 40px);
    border: 1px solid rgba(151, 219, 255, 0.12);
    background: rgba(5, 13, 21, 0.56);
    color: rgba(212, 228, 239, 0.66);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.home-hero-kicker > span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-right: 1px solid rgba(151, 219, 255, 0.12);
}

.home-hero-kicker > span:last-child {
    border-right: 0;
}

.home-live-status i {
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--unknown-cyan);
    box-shadow: 0 0 0 5px rgba(103, 232, 249, 0.08), 0 0 16px rgba(103, 232, 249, 0.8);
    animation: home-live 2.2s ease-in-out infinite;
}

body.home-event-page .home-event-copy .eyebrow {
    margin: 0 0 14px;
    color: rgba(179, 201, 216, 0.62);
    font-size: clamp(0.66rem, 0.8vw, 0.76rem);
    font-weight: 500;
    letter-spacing: 0.16em;
}

body.home-event-page .home-event-copy h1 {
    max-width: 12.5em;
    margin: 0;
    color: var(--unknown-text);
    font-size: clamp(3.6rem, 6.7vw, 7.2rem);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.078em;
    text-wrap: balance;
    text-shadow: none;
}

body.home-event-page .home-event-copy h1.langJp {
    max-width: 12.5em;
    font-family: 'Zen Kaku Gothic New', 'Space Grotesk', sans-serif;
    font-size: clamp(3.4rem, 6.4vw, 6.8rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.075em;
}

body.home-event-page .home-event-copy h1 > span {
    background: linear-gradient(100deg, var(--unknown-cyan) 0%, #b9f5ff 36%, #b99cff 75%, var(--unknown-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.home-event-page .home-event-copy .lede {
    max-width: 720px;
    margin: clamp(28px, 3vw, 40px) 0 0;
    color: rgba(207, 222, 233, 0.72);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.75;
}

.home-event-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 30px;
}

body.home-event-page .home-event-actions a {
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding: 10px 18px;
    text-align: left;
}

.home-cta-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2px;
}

.home-cta-stack > strong {
    font-size: 0.88rem;
    line-height: 1.25;
}

.home-cta-stack > small {
    color: currentColor;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.57rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.055em;
    opacity: 0.62;
}

body.home-event-page .primary-btn,
body.home-event-page .secondary-btn,
body.home-event-page .ghost-btn {
    border-radius: 999px;
}

body.home-event-page .primary-btn {
    border: 0;
    background: linear-gradient(115deg, var(--unknown-cyan), #8bd7ff 48%, #b392ff);
    color: #031017;
    box-shadow: 0 18px 46px rgba(103, 232, 249, 0.18);
}

body.home-event-page .primary-btn:hover {
    box-shadow: 0 20px 56px rgba(103, 232, 249, 0.26);
}

body.home-event-page .secondary-btn,
body.home-event-page .ghost-btn {
    border-color: rgba(151, 219, 255, 0.18);
    background: rgba(4, 10, 17, 0.48);
    color: var(--unknown-text);
}

body.home-event-page .secondary-btn:hover,
body.home-event-page .ghost-btn:hover {
    border-color: rgba(103, 232, 249, 0.44);
    background: rgba(103, 232, 249, 0.06);
}

.home-hero-primary {
    gap: 18px;
}

.home-hero-primary > span:last-child {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.home-library-cta {
    border-color: rgba(139, 92, 246, 0.3) !important;
    background:
        linear-gradient(120deg, rgba(139, 92, 246, 0.09), transparent 64%),
        rgba(4, 10, 17, 0.58) !important;
}

.home-library-grid-mark {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(188, 168, 255, 0.34);
    border-radius: 8px;
    color: #c9b9ff;
    font-size: 1rem;
}

.home-mission-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 clamp(62px, 7vw, 92px);
}

.home-mission-rail article {
    position: relative;
    min-height: 154px;
    padding: 20px;
    border: 1px solid rgba(151, 219, 255, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 54%),
        rgba(5, 12, 20, 0.72);
    overflow: hidden;
}

.home-mission-rail article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 132px;
    height: 132px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.12;
    box-shadow: 0 0 0 24px currentColor;
}

.home-mission-rail article:nth-child(1) { color: var(--student-lime); }
.home-mission-rail article:nth-child(2) { color: var(--student-pink); }
.home-mission-rail article:nth-child(3) { color: var(--unknown-cyan); }

.home-mission-rail article > span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 8px;
    border: 1px solid currentColor;
    color: currentColor;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.home-mission-rail article > strong {
    display: block;
    color: var(--unknown-text);
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.18rem, 1.7vw, 1.65rem);
    line-height: 1.2;
}

.home-mission-rail article > p {
    max-width: 28rem;
    margin: 12px 0 0;
    color: rgba(202, 219, 230, 0.65);
    font-size: 0.84rem;
    line-height: 1.65;
}

.home-board-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 30px;
    scroll-margin-top: 104px;
}

.home-board-intro .label {
    margin: 0 0 10px;
    color: var(--unknown-cyan);
    font-size: 0.67rem;
    letter-spacing: 0.13em;
}

.home-board-intro h2 {
    max-width: 13em;
    margin: 0;
    font-size: clamp(2.4rem, 4.6vw, 5.4rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.home-board-intro > p {
    max-width: 520px;
    margin: 0;
    color: rgba(199, 216, 228, 0.66);
    line-height: 1.7;
}

.home-split-board {
    display: grid;
    grid-template-columns: minmax(0, 1.58fr) minmax(340px, 0.72fr);
    gap: 18px;
    align-items: start;
}

body.home-event-page .home-event-card,
body.home-event-page .home-questions-card {
    min-width: 0;
    padding: clamp(18px, 2vw, 28px);
    border-radius: 22px;
}

body.home-event-page .home-event-card.glass,
body.home-event-page .home-questions-card.glass {
    border: 1px solid var(--unknown-line);
    background:
        linear-gradient(180deg, rgba(11, 21, 33, 0.9), rgba(5, 11, 18, 0.94)),
        var(--unknown-surface);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

body.home-event-page .home-event-card.glass:hover,
body.home-event-page .home-questions-card.glass:hover {
    border-color: rgba(151, 219, 255, 0.24);
    transform: none;
}

body.home-event-page .home-event-card.glass::before,
body.home-event-page .home-questions-card.glass::before {
    background: linear-gradient(115deg, rgba(103, 232, 249, 0.08), transparent 22%, transparent 76%, rgba(139, 92, 246, 0.06));
    opacity: 1;
}

body.home-event-page .home-event-card.glass::after,
body.home-event-page .home-questions-card.glass::after {
    background: none;
}

.home-current-mission {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    margin: -6px 0 22px;
    padding: 10px 12px 10px 14px;
    border: 1px solid rgba(184, 255, 90, 0.36);
    border-radius: 10px;
    background:
        linear-gradient(100deg, rgba(184, 255, 90, 0.12), rgba(103, 232, 249, 0.035) 56%, rgba(255, 98, 199, 0.07));
}

.home-current-mission > span {
    padding: 4px 7px;
    background: var(--student-lime);
    color: #071006;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-current-mission > strong {
    color: rgba(241, 248, 235, 0.88);
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-current-mission > i {
    color: rgba(184, 255, 90, 0.46);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
}

body.home-event-page .home-questions-card {
    position: sticky;
    top: 94px;
    display: grid;
    align-content: start;
    max-height: calc(100svh - 112px);
    overflow: auto;
    scrollbar-color: rgba(103, 232, 249, 0.22) transparent;
}

.home-board-head {
    margin-bottom: 16px;
}

.home-board-head .label {
    margin: 0;
    color: var(--unknown-cyan);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
}

body.home-event-page .home-board-head h2 {
    margin-top: 8px;
    color: var(--unknown-text);
    font-size: clamp(1.35rem, 2vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

body.home-event-page .home-board-head .ghost-btn.tiny {
    min-height: 36px;
    padding: 0.52rem 0.8rem;
}

body.home-event-page .home-event-like {
    min-height: 36px;
    border-color: rgba(244, 189, 102, 0.22);
    border-radius: 999px;
    background: rgba(244, 189, 102, 0.055);
    color: rgba(248, 212, 154, 0.78);
}

body.home-event-page .home-event-like:hover,
body.home-event-page .home-event-like:focus-visible,
body.home-event-page .home-event-like.is-liked {
    border-color: rgba(244, 189, 102, 0.46);
    background: rgba(244, 189, 102, 0.1);
}

body.home-event-page .home-event-like-status {
    min-height: 0;
    margin: -8px 0 8px;
}

body.home-event-page .home-event-stepper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    padding: 5px;
    border-color: rgba(151, 219, 255, 0.1);
    border-radius: 999px;
    background: rgba(3, 8, 14, 0.58);
}

body.home-event-page .home-event-nav-btn {
    min-height: 42px;
    border-color: transparent;
    border-radius: 999px;
    background: transparent;
    color: rgba(218, 233, 242, 0.72);
}

body.home-event-page .home-event-nav-btn.is-primary {
    border-color: rgba(103, 232, 249, 0.2);
    background: linear-gradient(100deg, rgba(103, 232, 249, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--unknown-text);
}

body.home-event-page .home-event-nav-btn:hover,
body.home-event-page .home-event-nav-btn:focus-visible {
    border-color: rgba(103, 232, 249, 0.32);
    background: rgba(103, 232, 249, 0.07);
}

body.home-event-page .home-event-summary {
    min-height: 0;
    margin: 16px 0;
    color: rgba(200, 217, 229, 0.68);
    font-size: 0.92rem;
    line-height: 1.68;
}

body.home-event-page .home-event-canvas {
    width: 100%;
    min-height: 0;
    aspect-ratio: 760 / 620;
    border-color: rgba(103, 232, 249, 0.2);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 50%, rgba(74, 111, 142, 0.09), transparent 46%),
        #020407;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 70px rgba(103, 232, 249, 0.07) inset;
}

body.home-event-page .home-event-canvas::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 12%, transparent 84%, rgba(0, 0, 0, 0.2)),
        repeating-linear-gradient(180deg, transparent 0 11px, rgba(103, 232, 249, 0.022) 12px 13px);
    background-position: 0 0;
    animation: home-scan 9s linear infinite;
}

.home-canvas-disclosure {
    margin: 10px 2px 0;
    color: rgba(166, 187, 201, 0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    line-height: 1.55;
}

.home-mobile-ask-jump {
    display: none;
}

body.home-event-page .home-event-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 12px 0;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 10px;
    overflow: hidden;
}

body.home-event-page .home-event-metrics > span {
    min-width: 0;
    padding: 0.9rem 1rem;
    border: 0;
    border-left: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.018);
    box-shadow: none;
}

body.home-event-page .home-event-metrics > span:first-child {
    border-left: 0;
}

body.home-event-page .home-event-metrics .label {
    color: rgba(169, 191, 207, 0.58);
    font-size: 0.6rem;
}

body.home-event-page .home-event-metrics strong {
    color: var(--physics-amber);
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.86rem, 1.2vw, 1rem);
}

.home-collision-library-bridge {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 18px 0 12px;
    padding: 13px 14px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 11px;
    background:
        linear-gradient(105deg, rgba(139, 92, 246, 0.09), transparent 62%),
        rgba(3, 8, 14, 0.5);
}

.home-library-count {
    display: grid;
    min-width: 58px;
    padding: 8px 10px;
    border: 1px solid rgba(188, 168, 255, 0.28);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.07);
    text-align: center;
}

.home-library-count strong {
    color: #c9b9ff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    line-height: 1;
}

.home-library-count small {
    margin-top: 3px;
    color: rgba(213, 202, 248, 0.56);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.49rem;
    letter-spacing: 0.08em;
}

.home-collision-library-bridge > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.home-collision-library-bridge .label {
    margin: 0;
    color: #bca8ff;
    font-size: 0.57rem;
    letter-spacing: 0.09em;
}

.home-collision-library-bridge > div > strong {
    color: rgba(230, 237, 244, 0.82);
    font-size: 0.76rem;
    line-height: 1.45;
}

.home-collision-library-bridge > a {
    min-height: 38px;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #d9ceff !important;
}

.home-observation-details {
    margin-top: 12px;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 10px;
    background: rgba(3, 8, 14, 0.36);
}

.home-observation-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
    padding: 12px 16px;
    cursor: pointer;
    list-style: none;
}

.home-observation-details > summary::-webkit-details-marker {
    display: none;
}

.home-observation-details > summary span {
    display: grid;
    gap: 2px;
}

.home-observation-details > summary strong {
    color: rgba(235, 245, 251, 0.86);
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.88rem;
}

.home-observation-details > summary small {
    color: rgba(169, 191, 207, 0.55);
    font-size: 0.72rem;
}

.home-observation-details > summary i {
    position: relative;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 50%;
}

.home-observation-details > summary i::before,
.home-observation-details > summary i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1px;
    background: var(--unknown-cyan);
    transform: translate(-50%, -50%);
    transition: transform 160ms ease;
}

.home-observation-details > summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-observation-details[open] > summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.home-observation-details[open] > summary {
    border-bottom: 1px solid rgba(151, 219, 255, 0.1);
}

.home-observation-details-body {
    padding: 12px;
}

body.home-event-page .home-event-legend {
    margin: 0 0 10px;
}

body.home-event-page .home-legend-group,
body.home-event-page .home-detector-primer-item,
body.home-event-page .home-detector-guide-detail,
body.home-event-page .home-selected-object {
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.022);
    box-shadow: none;
}

body.home-event-page .home-legend-group,
body.home-event-page .home-detector-primer-item {
    border-color: rgba(151, 219, 255, 0.11);
}

body.home-event-page .home-detector-primer-item:hover,
body.home-event-page .home-detector-primer-item.is-active {
    border-color: rgba(139, 92, 246, 0.34);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(103, 232, 249, 0.04));
}

body.home-event-page .home-detector-guide-detail,
body.home-event-page .home-selected-object {
    border-color: rgba(244, 189, 102, 0.15);
}

.home-imagination-deck {
    margin: 18px 0 12px;
    padding: 16px;
    border: 1px solid rgba(255, 98, 199, 0.2);
    border-radius: 12px;
    background:
        linear-gradient(130deg, rgba(255, 98, 199, 0.065), transparent 38%),
        rgba(3, 8, 14, 0.46);
}

.home-imagination-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.home-imagination-head .label {
    color: var(--student-pink);
    font-size: 0.6rem;
}

.home-imagination-head strong {
    color: rgba(231, 239, 245, 0.72);
    font-size: 0.8rem;
}

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

.home-imagination-grid button {
    display: grid;
    align-content: space-between;
    gap: 18px;
    min-height: 126px;
    padding: 14px;
    border: 1px solid rgba(151, 219, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.022);
    color: var(--unknown-text);
    text-align: left;
    cursor: pointer;
}

.home-imagination-grid button:nth-child(1) { --prompt-color: var(--student-yellow); }
.home-imagination-grid button:nth-child(2) { --prompt-color: var(--student-pink); }
.home-imagination-grid button:nth-child(3) { --prompt-color: var(--unknown-cyan); }

.home-imagination-grid button:hover,
.home-imagination-grid button:focus-visible {
    border-color: color-mix(in srgb, var(--prompt-color) 48%, transparent);
    background: color-mix(in srgb, var(--prompt-color) 7%, rgba(3, 8, 14, 0.82));
    transform: translateY(-2px);
}

.home-imagination-grid button:focus-visible {
    outline: 2px solid var(--prompt-color);
    outline-offset: 2px;
}

.home-imagination-grid button > span {
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--prompt-color);
    color: var(--prompt-color);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-imagination-grid button > strong {
    font-size: 0.78rem;
    line-height: 1.5;
}

body.home-event-page .home-questions-card .home-board-head {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(151, 219, 255, 0.1);
}

body.home-event-page .home-ai-console {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home-event-page .home-ai-console > .label,
body.home-event-page .home-answer-mode > .label {
    margin: 2px 0 -3px;
    color: var(--unknown-cyan);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
}

body.home-event-page .home-event-ask-note {
    color: rgba(190, 209, 222, 0.62);
    font-size: 0.82rem;
    line-height: 1.6;
}

body.home-event-page .home-question-starters {
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.home-event-page .home-question-starter-head .label {
    color: rgba(169, 191, 207, 0.54);
    font-size: 0.6rem;
}

body.home-event-page .home-question-starter {
    padding: 0.72rem 0.78rem;
    border-color: rgba(151, 219, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.018);
}

body.home-event-page .home-question-starter:hover,
body.home-event-page .home-question-starter:focus-visible {
    border-color: rgba(103, 232, 249, 0.32);
    background: rgba(103, 232, 249, 0.05);
}

.home-chat-session,
.home-chat-composer {
    display: grid;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(151, 219, 255, 0.13);
    border-radius: 12px;
    background: rgba(2, 7, 12, 0.5);
}

.home-chat-session {
    background:
        linear-gradient(145deg, rgba(139, 92, 246, 0.055), transparent 58%),
        rgba(2, 7, 12, 0.58);
}

.home-chat-session-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-chat-session-head > div {
    display: grid;
    gap: 3px;
}

.home-chat-session-head .label,
.home-chat-composer > .label {
    margin: 0;
    color: var(--unknown-cyan);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.home-chat-session-head strong {
    color: rgba(232, 241, 247, 0.86);
    font-size: 0.8rem;
}

.home-chat-turn-count {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 999px;
    color: var(--unknown-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
}

.home-chat-composer {
    border-color: rgba(184, 255, 90, 0.14);
    background:
        linear-gradient(145deg, rgba(184, 255, 90, 0.035), transparent 56%),
        rgba(2, 7, 12, 0.64);
}

.home-chat-keyboard-hint {
    margin-top: -5px;
    color: rgba(203, 218, 228, 0.78);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-align: right;
}

.home-chat-empty {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-height: 82px;
    padding: 13px;
    border: 1px dashed rgba(151, 219, 255, 0.16);
    border-radius: 10px;
    color: rgba(186, 205, 218, 0.58);
}

.home-chat-empty > span {
    color: var(--unknown-cyan);
    font-size: 1.1rem;
}

.home-chat-empty p {
    margin: 0 !important;
    font-size: 0.74rem;
    line-height: 1.55;
}

.home-ai-turn.is-error .home-ai-bubble-ai {
    border-color: rgba(251, 113, 133, 0.3);
    background: rgba(75, 16, 31, 0.2);
}

.home-input-label {
    margin: 2px 0 -7px;
    color: rgba(212, 228, 239, 0.72);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.home-event-page textarea.home-event-input {
    min-height: 106px;
    padding: 0.9rem;
    border-color: rgba(151, 219, 255, 0.16);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(103, 232, 249, 0.035), transparent 54%),
        rgba(2, 7, 12, 0.78);
    font: inherit;
    line-height: 1.6;
}

body.home-event-page textarea.home-event-input:focus {
    border-color: rgba(103, 232, 249, 0.48);
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.08);
}

body.home-event-page .home-answer-mode-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

body.home-event-page .home-answer-mode-option span {
    min-height: 68px;
    padding: 0.62rem;
    border-color: rgba(151, 219, 255, 0.11);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.018);
}

body.home-event-page .home-answer-mode-option strong {
    font-size: 0.76rem;
}

body.home-event-page .home-answer-mode-option small {
    font-size: 0.66rem;
}

body.home-event-page .home-answer-mode-option input:checked + span {
    border-color: rgba(139, 92, 246, 0.38);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(103, 232, 249, 0.055));
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.05);
}

body.home-event-page .home-answer-mode-option input:focus-visible + span,
body.home-event-page .home-detector-primer-item:focus-visible,
body.home-event-page .home-question-starter:focus-visible,
body.home-event-page .home-detector-guide-question:focus-visible,
body.home-event-page .home-ai-deeper-action:focus-visible {
    outline: 2px solid var(--unknown-cyan);
    outline-offset: 3px;
}

body.home-event-page .home-event-ask-actions {
    display: grid;
    grid-template-columns: 1fr auto;
}

body.home-event-page .home-event-ask-actions .primary-btn {
    width: 100%;
}

.home-ai-privacy-note,
.home-research-storage-note,
.home-research-share-note {
    margin: 10px 0 0;
    padding: 9px 11px;
    border-left: 2px solid rgba(103, 232, 249, 0.34);
    background: rgba(103, 232, 249, 0.035);
    color: rgba(195, 214, 226, 0.68);
    font-size: 0.72rem;
    line-height: 1.55;
}

body.home-event-page .home-ai-answer {
    max-height: 430px;
    border-color: rgba(151, 219, 255, 0.12);
    border-radius: 10px;
    background: rgba(2, 7, 12, 0.72);
}

.home-ai-research-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(151, 219, 255, 0.09);
}

.home-ai-research-actions button {
    min-height: 40px;
    padding: 7px 8px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.06);
    color: rgba(218, 207, 250, 0.78);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.54rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.home-ai-research-actions button:hover,
.home-ai-research-actions button:focus-visible {
    border-color: rgba(139, 92, 246, 0.48);
    background: rgba(139, 92, 246, 0.12);
    color: var(--unknown-text);
}

.home-ai-research-actions button.is-selected,
.home-ai-research-actions button[aria-pressed="true"] {
    border-color: rgba(184, 255, 90, 0.45);
    background: rgba(184, 255, 90, 0.08);
    color: var(--student-lime);
}

.home-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.home-physics-frontier {
    --frontier-accent: var(--student-pink);
    --frontier-accent-rgb: 255, 98, 199;
    position: relative;
    margin-top: clamp(64px, 8vw, 118px);
    padding: clamp(22px, 3.4vw, 50px);
    border: 1px solid color-mix(in srgb, var(--frontier-accent) 26%, transparent);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--frontier-accent) 13%, transparent), transparent 30rem),
        radial-gradient(circle at 95% 22%, rgba(103, 232, 249, 0.075), transparent 27rem),
        linear-gradient(155deg, rgba(8, 18, 29, 0.97), rgba(3, 8, 14, 0.99));
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
    scroll-margin-top: 96px;
    overflow: hidden;
}

.home-physics-frontier[data-channel="four_lepton"] {
    --frontier-accent: var(--student-pink);
    --frontier-accent-rgb: 255, 98, 199;
}

.home-physics-frontier[data-channel="two_muons"] {
    --frontier-accent: var(--unknown-cyan);
    --frontier-accent-rgb: 103, 232, 249;
}

.home-physics-frontier[data-channel="dileptonic_top"] {
    --frontier-accent: var(--student-yellow);
    --frontier-accent-rgb: 255, 216, 79;
}

body.home-event-page .home-physics-frontier.glass:hover {
    border-color: color-mix(in srgb, var(--frontier-accent) 32%, transparent);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
    transform: none;
}

.home-physics-frontier::before {
    content: "";
    position: absolute;
    top: -172px;
    right: -112px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgba(var(--frontier-accent-rgb), 0.032),
        0 0 0 96px rgba(var(--frontier-accent-rgb), 0.02);
    pointer-events: none;
}

.home-physics-frontier::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 66px 66px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
    opacity: 0.48;
    pointer-events: none;
}

.home-physics-frontier-header,
.home-physics-route,
.home-physics-one-clue,
.home-interpretation-dossier,
.home-physics-frontier-grid,
.home-physics-frontier-footer {
    position: relative;
    z-index: 1;
}

.home-physics-frontier-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
    gap: clamp(26px, 4vw, 62px);
    align-items: end;
}

.home-physics-frontier-title > .label {
    margin: 0 0 12px;
    color: var(--frontier-accent);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

.home-physics-frontier-title h2 {
    max-width: 17em;
    margin: 0;
    font-size: clamp(2.15rem, 4.1vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.home-physics-frontier-title > p:not(.label) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(200, 217, 229, 0.68);
    line-height: 1.7;
}

.home-physics-current-context {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.3);
    border-radius: 13px;
    background:
        linear-gradient(135deg, rgba(var(--frontier-accent-rgb), 0.11), transparent 70%),
        rgba(2, 7, 12, 0.72);
}

.home-physics-current-context > span {
    color: rgba(var(--frontier-accent-rgb), 0.72);
    font-size: 0.59rem;
    letter-spacing: 0.1em;
}

.home-physics-current-context strong {
    overflow-wrap: anywhere;
    color: var(--unknown-text);
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.25;
}

.home-physics-current-context small {
    color: var(--frontier-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.07em;
}

.home-physics-route {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 34px 0 0;
    padding: 0;
    border: 1px solid rgba(151, 219, 255, 0.12);
    border-radius: 14px;
    background: rgba(2, 7, 12, 0.58);
    list-style: none;
    overflow: hidden;
}

.home-physics-route li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 16px;
    border-left: 1px solid rgba(151, 219, 255, 0.1);
    color: rgba(199, 217, 229, 0.55);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.09em;
}

.home-physics-route li:first-child {
    border-left: 0;
}

.home-physics-route li::after {
    content: "→";
    position: absolute;
    right: 12px;
    color: rgba(var(--frontier-accent-rgb), 0.52);
    font-size: 0.9rem;
}

.home-physics-route li:last-child::after {
    content: "●";
    font-size: 0.48rem;
}

.home-physics-route li > span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.34);
    border-radius: 50%;
    color: var(--frontier-accent);
    font-size: 0.56rem;
    box-shadow: 0 0 18px rgba(var(--frontier-accent-rgb), 0.12);
}

.home-physics-route li > strong {
    padding-right: 20px;
}

.home-physics-one-clue {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 14px;
    padding: 18px 20px;
    border: 1px dashed rgba(244, 189, 102, 0.36);
    border-radius: 13px;
    background:
        linear-gradient(110deg, rgba(244, 189, 102, 0.1), transparent 60%),
        rgba(3, 8, 14, 0.72);
}

.home-physics-one-clue > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(244, 189, 102, 0.52);
    border-radius: 50%;
    color: var(--physics-amber);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    box-shadow: 0 0 26px rgba(244, 189, 102, 0.13);
}

.home-physics-one-clue > div {
    min-width: 0;
}

.home-physics-one-clue > div > strong {
    display: block;
    color: var(--physics-amber);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.home-physics-one-clue p {
    margin: 6px 0 0;
    color: rgba(219, 229, 236, 0.78);
    font-size: 0.82rem;
    line-height: 1.58;
}

.home-physics-one-clue small {
    display: block;
    margin-top: 7px;
    color: rgba(183, 202, 215, 0.55);
    font-size: 0.71rem;
    line-height: 1.5;
}

.home-physics-one-clue > a,
.home-physics-source-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: rgba(221, 235, 244, 0.7);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.home-physics-one-clue > a:hover,
.home-physics-source-link:hover {
    color: var(--unknown-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-physics-frontier :focus-visible {
    outline: 2px solid var(--frontier-accent);
    outline-offset: 3px;
}

.home-physics-frontier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    border: 1px solid rgba(151, 219, 255, 0.14);
    border-radius: 20px;
    background: rgba(2, 7, 12, 0.66);
    overflow: hidden;
}

.home-physics-frontier-panel {
    --panel-accent: var(--frontier-accent);
    min-width: 0;
    padding: clamp(18px, 2.2vw, 28px);
    border-left: 1px solid rgba(151, 219, 255, 0.11);
}

.home-physics-frontier-panel:first-child {
    border-left: 0;
}

.home-physics-frontier-panel.is-law {
    --panel-accent: var(--physics-amber);
}

.home-physics-frontier-panel.is-unknown {
    --panel-accent: var(--student-pink);
}

.home-physics-frontier-panel.is-researcher {
    --panel-accent: var(--student-lime);
    grid-column: 1 / -1;
    border-top: 1px solid rgba(151, 219, 255, 0.11);
    border-left: 0;
}

.home-physics-frontier-panel.is-researcher .home-physics-card-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 1181px) {
    .home-physics-frontier-panel.is-researcher .home-physics-card-list[data-count="5"] {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list[data-count="5"] > .home-physics-researcher-card {
        grid-column: span 2;
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list[data-count="5"] > .home-physics-researcher-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list[data-count="5"] > .home-physics-researcher-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (min-width: 701px) and (max-width: 1180px) {
    .home-physics-frontier-panel.is-researcher .home-physics-card-list[data-count="5"] > .home-physics-researcher-card:last-child {
        grid-column: 1 / -1;
        width: calc((100% - 11px) / 2);
        justify-self: center;
    }
}

.home-physics-panel-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    min-height: 98px;
    padding-bottom: 19px;
    border-bottom: 1px solid rgba(151, 219, 255, 0.1);
}

.home-physics-panel-number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--panel-accent) 62%, transparent);
    border-radius: 50%;
    color: var(--panel-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    box-shadow: 0 0 22px color-mix(in srgb, var(--panel-accent) 17%, transparent);
}

.home-physics-panel-heading .label {
    margin: 1px 0 5px;
    color: var(--panel-accent);
    font-size: 0.59rem;
    letter-spacing: 0.1em;
}

.home-physics-panel-heading h3 {
    margin: 0;
    font-size: clamp(1.06rem, 1.5vw, 1.38rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.home-physics-card-list {
    display: grid;
    gap: 11px;
    margin-top: 14px;
}

.home-physics-law-card,
.home-physics-question-card,
.home-physics-researcher-card {
    position: relative;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 13px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--panel-accent) 5%, transparent), transparent 62%),
        rgba(255, 255, 255, 0.018);
    animation: home-frontier-card-in 340ms ease both;
}

.home-physics-card-list > :nth-child(2) {
    animation-delay: 70ms;
}

.home-physics-card-list > :nth-child(3) {
    animation-delay: 130ms;
}

.home-physics-card-list > :nth-child(4) {
    animation-delay: 190ms;
}

.home-physics-card-list > :nth-child(5) {
    animation-delay: 250ms;
}

.home-physics-law-card:hover,
.home-physics-question-card:hover,
.home-physics-researcher-card:hover {
    border-color: color-mix(in srgb, var(--panel-accent) 33%, transparent);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--panel-accent) 8%, transparent), transparent 62%),
        rgba(255, 255, 255, 0.024);
}

.home-physics-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-physics-card-index,
.home-physics-question-status,
.home-physics-person-tag {
    color: color-mix(in srgb, var(--panel-accent) 78%, white 12%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.home-physics-formula {
    padding: 4px 7px;
    border: 1px solid color-mix(in srgb, var(--panel-accent) 25%, transparent);
    border-radius: 5px;
    background: color-mix(in srgb, var(--panel-accent) 7%, transparent);
    color: var(--panel-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}

.home-physics-law-card h4,
.home-physics-question-card h4,
.home-physics-researcher-card h4 {
    margin: 12px 0 0;
    color: var(--unknown-text);
    font-size: 0.98rem;
    line-height: 1.36;
    letter-spacing: -0.025em;
}

.home-physics-card-body {
    margin: 9px 0 0;
    color: rgba(198, 216, 228, 0.68);
    font-size: 0.78rem;
    line-height: 1.64;
}

.home-physics-event-clue {
    display: grid;
    gap: 6px;
    margin-top: 13px;
    padding: 11px;
    border-left: 2px solid var(--panel-accent);
    background: color-mix(in srgb, var(--panel-accent) 5%, rgba(2, 7, 12, 0.76));
}

.home-physics-event-clue > span {
    color: rgba(212, 228, 239, 0.52);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
}

.home-physics-event-metric {
    color: var(--panel-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.82rem;
}

.home-physics-event-clue p {
    margin: 0;
    color: rgba(217, 230, 239, 0.78);
    font-size: 0.73rem;
    line-height: 1.55;
}

.home-physics-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: 13px;
}

.home-physics-ask {
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb, var(--panel-accent) 34%, transparent);
    border-radius: 7px;
    background: color-mix(in srgb, var(--panel-accent) 7%, transparent);
    color: color-mix(in srgb, var(--panel-accent) 78%, white 18%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
}

.home-physics-ask:hover {
    border-color: color-mix(in srgb, var(--panel-accent) 62%, transparent);
    background: color-mix(in srgb, var(--panel-accent) 13%, transparent);
    color: var(--unknown-text);
}

.home-physics-question-status {
    display: inline-block;
    padding: 4px 7px;
    border: 1px solid rgba(255, 98, 199, 0.28);
    border-radius: 999px;
    background: rgba(255, 98, 199, 0.055);
}

.home-physics-person {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.home-physics-avatar {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(184, 255, 90, 0.46);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 24%),
        rgba(184, 255, 90, 0.07);
    color: var(--student-lime);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 0 24px rgba(184, 255, 90, 0.11);
}

.home-physics-avatar::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px dashed rgba(184, 255, 90, 0.2);
    border-radius: 50%;
}

.home-physics-person-name {
    margin: 0 !important;
}

.home-physics-person-role {
    margin: 4px 0 0;
    color: rgba(198, 216, 228, 0.6);
    font-size: 0.67rem;
    line-height: 1.5;
}

.home-physics-person-tag {
    display: inline-block;
    margin-top: 11px;
    color: var(--student-lime);
}

.home-physics-frontier-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(151, 219, 255, 0.1);
    color: rgba(180, 200, 214, 0.51);
    font-size: 0.68rem;
}

.home-physics-frontier-footer p {
    margin: 0;
}

.home-physics-frontier-footer > span {
    flex: 0 0 auto;
    color: rgba(var(--frontier-accent-rgb), 0.62);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
}

.home-interpretation-dossier {
    margin-top: 18px;
    padding: clamp(18px, 2.6vw, 32px);
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.28);
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 12%, rgba(var(--frontier-accent-rgb), 0.13), transparent 19rem),
        linear-gradient(135deg, rgba(var(--frontier-accent-rgb), 0.065), transparent 48%),
        rgba(1, 6, 11, 0.78);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.home-interpretation-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(151, 219, 255, 0.1);
}

.home-interpretation-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.62);
    border-radius: 50%;
    color: var(--frontier-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    box-shadow: 0 0 26px rgba(var(--frontier-accent-rgb), 0.16);
}

.home-interpretation-heading .label {
    margin: 0 0 6px;
    color: var(--frontier-accent);
    font-size: 0.59rem;
    letter-spacing: 0.1em;
}

.home-interpretation-heading h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.home-interpretation-card {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 18px;
    margin-top: 18px;
}

.home-interpretation-primary,
.home-interpretation-analysis {
    min-width: 0;
    padding: clamp(17px, 2vw, 24px);
    border: 1px solid rgba(151, 219, 255, 0.12);
    border-radius: 15px;
    background: rgba(4, 11, 18, 0.72);
}

.home-interpretation-primary {
    position: relative;
    overflow: hidden;
}

.home-interpretation-primary::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -68px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 22px rgba(var(--frontier-accent-rgb), 0.025);
    pointer-events: none;
}

.home-interpretation-status {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid rgba(244, 189, 102, 0.42);
    border-radius: 999px;
    background: rgba(244, 189, 102, 0.075);
    color: var(--physics-amber);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.home-interpretation-primary h4 {
    max-width: 18em;
    margin: 18px 0 0;
    color: var(--unknown-text);
    font-size: clamp(1.35rem, 2.6vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.home-interpretation-decay {
    display: inline-flex;
    max-width: 100%;
    margin-top: 14px;
    padding: 9px 11px;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.38);
    border-radius: 8px;
    background: rgba(var(--frontier-accent-rgb), 0.075);
    color: var(--frontier-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.78rem, 1.3vw, 1.05rem);
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.home-interpretation-meaning {
    max-width: 52rem;
    margin: 16px 0 0;
    color: rgba(215, 229, 238, 0.8);
    font-size: 0.86rem;
    line-height: 1.72;
}

.home-interpretation-live-evidence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 11px;
    overflow: hidden;
}

.home-interpretation-live-evidence > span {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 11px;
    border-left: 1px solid rgba(151, 219, 255, 0.1);
}

.home-interpretation-live-evidence > span:first-child {
    border-left: 0;
}

.home-interpretation-live-evidence small {
    color: rgba(185, 204, 218, 0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
}

.home-interpretation-live-evidence strong {
    color: rgba(231, 240, 246, 0.88);
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.home-interpretation-evidence-list {
    display: grid;
    gap: 8px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.home-interpretation-evidence-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(209, 226, 236, 0.72);
    font-size: 0.8rem;
    line-height: 1.56;
}

.home-interpretation-evidence-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border: 1px solid var(--frontier-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(var(--frontier-accent-rgb), 0.38);
}

.home-interpretation-analysis {
    display: grid;
    gap: 12px;
    align-content: start;
}

.home-interpretation-analysis section {
    padding: 14px;
    border-left: 2px solid rgba(151, 219, 255, 0.24);
    background: rgba(255, 255, 255, 0.018);
}

.home-interpretation-analysis section.is-alternative {
    border-left-color: var(--physics-amber);
}

.home-interpretation-analysis section.is-significance {
    border-left-color: var(--student-lime);
}

.home-interpretation-analysis section > span {
    color: rgba(185, 204, 217, 0.52);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-interpretation-analysis section > strong {
    display: block;
    margin-top: 6px;
    color: rgba(232, 240, 246, 0.88);
    font-size: 0.86rem;
    line-height: 1.35;
}

.home-interpretation-analysis section > p {
    margin: 7px 0 0;
    color: rgba(197, 216, 228, 0.66);
    font-size: 0.74rem;
    line-height: 1.62;
}

.home-interpretation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.home-interpretation-actions button,
.home-interpretation-actions a {
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(var(--frontier-accent-rgb), 0.34);
    border-radius: 8px;
    background: rgba(var(--frontier-accent-rgb), 0.07);
    color: color-mix(in srgb, var(--frontier-accent) 78%, white 16%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.57rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    cursor: pointer;
}

.home-interpretation-actions button:hover,
.home-interpretation-actions a:hover {
    border-color: rgba(var(--frontier-accent-rgb), 0.62);
    background: rgba(var(--frontier-accent-rgb), 0.13);
    color: var(--unknown-text);
}

.home-interpretation-caveat {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: -4px 0 0;
    padding: 11px 13px;
    border: 1px dashed rgba(244, 189, 102, 0.34);
    border-radius: 10px;
    background: rgba(244, 189, 102, 0.055);
    color: rgba(247, 220, 177, 0.78);
    font-size: 0.72rem;
    line-height: 1.55;
}

.home-interpretation-caveat::before {
    content: "!";
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(244, 189, 102, 0.54);
    border-radius: 50%;
    color: var(--physics-amber);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
}

.home-research-runway {
    position: relative;
    margin-top: clamp(64px, 8vw, 118px);
    padding: clamp(22px, 3.4vw, 50px);
    border: 1px solid rgba(139, 92, 246, 0.27);
    border-radius: 28px;
    background:
        radial-gradient(circle at 91% 2%, rgba(139, 92, 246, 0.16), transparent 28rem),
        radial-gradient(circle at 3% 44%, rgba(103, 232, 249, 0.075), transparent 24rem),
        linear-gradient(155deg, rgba(8, 15, 27, 0.98), rgba(3, 7, 13, 0.99));
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
    scroll-margin-top: 96px;
    overflow: hidden;
}

body.home-event-page .home-research-runway.glass:hover {
    border-color: rgba(139, 92, 246, 0.34);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
    transform: none;
}

.home-research-runway::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
    opacity: 0.42;
    pointer-events: none;
}

.home-research-runway > * {
    position: relative;
    z-index: 1;
}

.home-research-runway :focus-visible {
    outline: 2px solid #bca8ff;
    outline-offset: 3px;
}

.home-research-runway-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.33fr);
    gap: clamp(26px, 4vw, 60px);
    align-items: end;
}

.home-research-runway-header .label {
    margin: 0 0 12px;
    color: #bca8ff;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

.home-research-runway-header h2 {
    max-width: 17em;
    margin: 0;
    font-size: clamp(2.15rem, 4.1vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.home-research-runway-header > div:first-child > p:not(.label) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(200, 217, 229, 0.68);
    line-height: 1.7;
}

.home-research-case-id {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(188, 168, 255, 0.3);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.13), rgba(2, 7, 12, 0.72));
}

.home-research-case-id > span,
.home-research-case-id > small {
    color: rgba(207, 191, 255, 0.68);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.57rem;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.home-research-case-id > strong {
    overflow-wrap: anywhere;
    color: var(--unknown-text);
    font-size: 1rem;
    line-height: 1.35;
}

.home-research-progress {
    display: grid;
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    margin: 32px 0 0;
    padding: 0;
    border: 1px solid rgba(188, 168, 255, 0.17);
    border-radius: 15px;
    background: rgba(2, 7, 12, 0.66);
    overflow-x: auto;
    list-style: none;
}

.home-research-progress:focus-visible {
    outline: 2px solid var(--unknown-cyan);
    outline-offset: 4px;
}

.home-research-progress li {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 9px;
    min-height: 78px;
    align-content: center;
    padding: 12px 14px;
    border-left: 1px solid rgba(151, 219, 255, 0.09);
    color: rgba(187, 202, 214, 0.48);
}

.home-research-progress li:first-child {
    border-left: 0;
}

.home-research-progress li.is-ready {
    background: linear-gradient(150deg, rgba(184, 255, 90, 0.065), transparent 62%);
    color: rgba(219, 235, 226, 0.8);
}

.home-research-progress li.is-active {
    background: linear-gradient(150deg, rgba(103, 232, 249, 0.11), rgba(139, 92, 246, 0.07));
    color: var(--unknown-text);
}

.home-research-progress li.is-started:not(.is-active) {
    background: linear-gradient(150deg, rgba(188, 168, 255, 0.08), transparent 62%);
    color: rgba(220, 213, 241, 0.78);
}

.home-research-progress li > span {
    grid-row: 1 / span 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: #bca8ff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
}

.home-research-progress li.is-ready > span {
    color: var(--student-lime);
}

.home-research-progress li.is-active > span {
    color: var(--unknown-cyan);
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.14);
}

.home-research-progress strong {
    font-size: 0.72rem;
    line-height: 1.25;
}

.home-research-progress small {
    color: rgba(183, 201, 213, 0.5);
    font-size: 0.65rem;
    line-height: 1.25;
}

.home-research-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 18px;
    margin-top: 18px;
}

.home-research-notebook,
.home-arxiv-radar {
    min-width: 0;
    padding: clamp(18px, 2.3vw, 28px);
    border: 1px solid rgba(151, 219, 255, 0.13);
    border-radius: 18px;
    background: rgba(2, 7, 12, 0.72);
}

.home-research-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(151, 219, 255, 0.1);
}

.home-research-panel-heading .label {
    margin: 0 0 6px;
    color: var(--unknown-cyan);
    font-size: 0.57rem;
    letter-spacing: 0.1em;
}

.home-research-panel-heading h3 {
    max-width: 26em;
    margin: 0;
    font-size: clamp(1.08rem, 1.6vw, 1.38rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

#homeResearchCitationCount {
    flex: 0 0 auto;
    padding: 5px 7px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 999px;
    color: var(--unknown-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.53rem;
}

.home-research-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.home-research-note-grid section {
    min-width: 0;
    min-height: 146px;
    padding: 14px;
    border: 1px solid rgba(151, 219, 255, 0.1);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(103, 232, 249, 0.035), transparent 64%),
        rgba(255, 255, 255, 0.015);
}

.home-research-note-grid section > span {
    color: #bca8ff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
}

.home-research-note-grid section > strong {
    display: block;
    margin-top: 8px;
    color: rgba(232, 240, 246, 0.88);
    font-size: 0.79rem;
    line-height: 1.35;
}

.home-research-note-grid section > p {
    margin: 8px 0 0;
    color: rgba(196, 215, 227, 0.66);
    font-size: 0.72rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
}

.home-research-note-grid .home-research-source-list {
    display: grid;
    gap: 5px;
    margin: 8px 0 0;
    padding-left: 18px;
    color: rgba(196, 215, 227, 0.68);
    font-size: 0.68rem;
    line-height: 1.45;
}

.home-research-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.home-research-actions > * {
    justify-content: center;
    min-height: 48px;
    padding: 9px 10px !important;
    text-align: center;
    font-size: 0.66rem !important;
    line-height: 1.35;
}

.home-research-actions a[data-locked="true"] {
    border-color: rgba(188, 168, 255, 0.16);
    background: rgba(139, 92, 246, 0.04);
    color: rgba(207, 198, 232, 0.43);
    cursor: not-allowed;
}

.home-research-action-status {
    min-height: 1.5em;
    margin: 11px 0 0;
    color: rgba(191, 208, 220, 0.58);
    font-size: 0.68rem;
    line-height: 1.55;
}

.home-research-storage-note {
    border-left-color: rgba(188, 168, 255, 0.34);
    background: rgba(139, 92, 246, 0.035);
}

.home-research-share-note {
    border-left-color: rgba(184, 255, 90, 0.32);
    background: rgba(184, 255, 90, 0.025);
}

.home-prism-handoff {
    display: grid;
    gap: 13px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(116, 169, 255, 0.24);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(72, 116, 255, 0.11), transparent 58%),
        rgba(3, 8, 18, 0.76);
}

.home-prism-handoff h4 {
    margin: 5px 0 0;
    color: rgba(239, 244, 255, 0.94);
    font-size: 1rem;
    line-height: 1.35;
}

.home-prism-handoff > div > p:not(.label) {
    margin: 8px 0 0;
    color: rgba(198, 215, 235, 0.7);
    font-size: 0.76rem;
    line-height: 1.58;
}

.home-prism-handoff code {
    color: #c9d8ff;
    font-family: 'IBM Plex Mono', monospace;
}

.home-prism-ai-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 11px;
    border: 1px solid rgba(151, 219, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.home-prism-ai-option input {
    margin-top: 3px;
    accent-color: var(--unknown-cyan);
}

.home-prism-ai-option span {
    display: grid;
    gap: 3px;
}

.home-prism-ai-option strong {
    color: rgba(231, 239, 248, 0.88);
    font-size: 0.76rem;
}

.home-prism-ai-option small {
    color: rgba(190, 209, 224, 0.58);
    font-size: 0.68rem;
    line-height: 1.45;
}

.home-prism-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.home-prism-actions > * {
    justify-content: center;
    min-height: 44px;
    text-align: center;
    font-size: 0.68rem !important;
}

.home-prism-status {
    min-height: 1.5em;
    margin: 0;
    color: rgba(194, 214, 230, 0.68);
    font-size: 0.7rem;
    line-height: 1.5;
}

.home-prism-import {
    display: grid;
    gap: 11px;
    margin-top: 5px;
    padding: 14px;
    border: 1px solid rgba(184, 255, 90, 0.17);
    border-radius: 12px;
    background:
        linear-gradient(140deg, rgba(184, 255, 90, 0.045), transparent 55%),
        rgba(2, 8, 12, 0.68);
}

.home-prism-import h5,
.home-prism-import-preview h6 {
    margin: 5px 0 0;
    color: rgba(236, 245, 248, 0.92);
    font-size: 0.9rem;
    line-height: 1.4;
}

.home-prism-import > div > p:not(.label),
.home-prism-import-note {
    margin: 7px 0 0;
    color: rgba(192, 211, 224, 0.66);
    font-size: 0.7rem;
    line-height: 1.55;
}

.home-prism-file-label {
    color: rgba(224, 237, 244, 0.82);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
}

#homePrismImportFile {
    width: 100%;
    padding: 10px;
    border: 1px dashed rgba(103, 232, 249, 0.28);
    border-radius: 10px;
    background: rgba(3, 9, 14, 0.74);
    color: rgba(212, 228, 238, 0.78);
    font-size: 0.68rem;
}

#homePrismImportFile::file-selector-button {
    margin-right: 10px;
    padding: 7px 9px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 7px;
    background: rgba(103, 232, 249, 0.07);
    color: var(--unknown-cyan);
    cursor: pointer;
}

.home-prism-import-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-prism-import-actions > span {
    color: rgba(191, 210, 223, 0.66);
    font-size: 0.68rem;
    line-height: 1.45;
}

.home-prism-import-actions a,
#homePrismImportStatus a {
    margin-left: 5px;
    color: var(--unknown-cyan);
    font-weight: 700;
}

.home-prism-import-preview {
    display: grid;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(103, 232, 249, 0.17);
    border-radius: 11px;
    background: rgba(2, 7, 12, 0.72);
}

.home-prism-import-preview[hidden] {
    display: none;
}

.home-prism-import-preview > .label {
    margin: 0;
    color: var(--unknown-cyan);
    font-size: 0.7rem;
}

.home-prism-import-preview dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border: 1px solid rgba(151, 219, 255, 0.1);
    border-radius: 9px;
    overflow: hidden;
}

.home-prism-import-preview dl > div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 10px;
    border-top: 1px solid rgba(151, 219, 255, 0.08);
}

.home-prism-import-preview dl > div:nth-child(-n + 2) {
    border-top: 0;
}

.home-prism-import-preview dl > div:nth-child(even) {
    border-left: 1px solid rgba(151, 219, 255, 0.08);
}

.home-prism-import-preview dl > div.is-wide {
    grid-column: 1 / -1;
    border-left: 0;
}

.home-prism-import-preview dt {
    color: rgba(207, 221, 230, 0.78);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.home-prism-import-preview dd {
    margin: 0;
    color: rgba(228, 238, 245, 0.8);
    font-size: 0.74rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.home-prism-import-warnings {
    display: grid;
    gap: 5px;
    margin: 0;
    padding-left: 18px;
    color: rgba(244, 203, 137, 0.78);
    font-size: 0.72rem;
    line-height: 1.5;
}

.home-prism-import-preview > .primary-btn {
    justify-content: center;
    width: 100%;
    text-align: center;
}

.home-prism-minor-note {
    display: block;
    padding-top: 10px;
    border-top: 1px solid rgba(151, 219, 255, 0.09);
    color: rgba(205, 219, 228, 0.76);
    font-size: 0.72rem;
    line-height: 1.5;
}

.home-prism-minor-note a {
    margin-left: 6px;
    color: rgba(188, 168, 255, 0.82);
    text-decoration: none;
}

.home-arxiv-search-btn {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(188, 168, 255, 0.36);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.09);
    color: #d5c9ff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.57rem;
    font-weight: 700;
    cursor: pointer;
}

.home-arxiv-search-btn:hover {
    border-color: rgba(188, 168, 255, 0.62);
    background: rgba(139, 92, 246, 0.15);
    color: var(--unknown-text);
}

.home-arxiv-search-btn:disabled {
    cursor: wait;
    opacity: 0.52;
}

.home-arxiv-query {
    margin: 14px 0 0;
    padding: 9px 11px;
    border-left: 2px solid rgba(188, 168, 255, 0.44);
    background: rgba(139, 92, 246, 0.045);
    color: rgba(213, 202, 245, 0.64);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.57rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.home-arxiv-status {
    min-height: 1.45em;
    margin: 11px 0;
    color: rgba(188, 205, 217, 0.56);
    font-size: 0.68rem;
    line-height: 1.5;
}

.home-arxiv-paper-list {
    display: grid;
    gap: 9px;
}

.home-arxiv-paper-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.017);
}

.home-arxiv-paper-index {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(188, 168, 255, 0.34);
    border-radius: 50%;
    color: #bca8ff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
}

.home-arxiv-paper-copy {
    min-width: 0;
}

.home-arxiv-paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    color: rgba(187, 205, 217, 0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
}

.home-arxiv-paper-card h4 {
    margin: 7px 0 0;
    color: rgba(233, 241, 246, 0.9);
    font-size: 0.82rem;
    line-height: 1.42;
}

.home-arxiv-paper-card p {
    display: -webkit-box;
    margin: 7px 0 0;
    overflow: hidden;
    color: rgba(193, 213, 225, 0.62);
    font-size: 0.75rem;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-arxiv-paper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 9px;
}

.home-arxiv-paper-actions a,
.home-arxiv-paper-actions button {
    min-height: 32px;
    padding: 6px 8px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 7px;
    background: rgba(103, 232, 249, 0.045);
    color: rgba(194, 238, 247, 0.78);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.home-arxiv-paper-actions button.is-saved {
    border-color: rgba(184, 255, 90, 0.32);
    background: rgba(184, 255, 90, 0.07);
    color: var(--student-lime);
}

.home-arxiv-acknowledgement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(151, 219, 255, 0.08);
    color: rgba(178, 196, 209, 0.43);
    font-size: 0.65rem;
    line-height: 1.5;
}

.home-arxiv-acknowledgement a {
    flex: 0 0 auto;
    color: rgba(200, 190, 237, 0.62);
    text-decoration: none;
}

.home-review-market {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 18px;
    padding: clamp(18px, 2.5vw, 30px);
    border: 1px solid rgba(255, 98, 199, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 98, 199, 0.055), rgba(2, 7, 12, 0.72) 42%);
}

.home-review-market header .label {
    margin: 0 0 8px;
    color: var(--student-pink);
    font-size: 0.57rem;
}

.home-review-market header h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.2vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.home-review-market header > p:not(.label) {
    margin: 12px 0 0;
    color: rgba(197, 215, 227, 0.61);
    font-size: 0.74rem;
    line-height: 1.65;
}

.home-review-layer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.home-review-layer-grid article {
    display: grid;
    align-content: start;
    min-width: 0;
    min-height: 230px;
    padding: 15px;
    border: 1px solid rgba(151, 219, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.017);
}

.home-review-layer-grid article > span {
    color: #bca8ff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.07em;
}

.home-review-layer-grid article > strong {
    margin-top: 12px;
    color: rgba(231, 239, 245, 0.9);
    font-size: 0.84rem;
    line-height: 1.38;
}

.home-review-layer-grid article > p {
    margin: 9px 0 0;
    color: rgba(193, 212, 224, 0.62);
    font-size: 0.75rem;
    line-height: 1.58;
}

.home-review-layer-grid article > small {
    align-self: end;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(151, 219, 255, 0.08);
    color: rgba(184, 255, 90, 0.63);
    font-size: 0.66rem;
    line-height: 1.48;
}

.home-research-kaggle-vision {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
    gap: 24px;
    align-items: center;
    margin-top: 18px;
    padding: clamp(18px, 2.5vw, 30px);
    border: 1px dashed rgba(184, 255, 90, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(105deg, rgba(184, 255, 90, 0.065), transparent 48%),
        rgba(2, 7, 12, 0.7);
}

.home-research-kaggle-vision > div {
    display: grid;
    gap: 10px;
}

.home-research-kaggle-vision > div > span {
    color: var(--student-lime);
    font-size: 0.57rem;
    letter-spacing: 0.09em;
}

.home-research-kaggle-vision > div > strong {
    max-width: 50rem;
    color: rgba(235, 243, 239, 0.88);
    font-size: clamp(1rem, 1.7vw, 1.45rem);
    line-height: 1.42;
}

.home-research-kaggle-vision dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border: 1px solid rgba(184, 255, 90, 0.17);
    border-radius: 12px;
    overflow: hidden;
}

.home-research-kaggle-vision dl > div {
    display: grid;
    gap: 5px;
    padding: 12px 9px;
    border-left: 1px solid rgba(184, 255, 90, 0.13);
    text-align: center;
}

.home-research-kaggle-vision dl > div:first-child {
    border-left: 0;
}

.home-research-kaggle-vision dt {
    color: rgba(202, 220, 210, 0.58);
    font-size: 0.55rem;
    line-height: 1.35;
}

.home-research-kaggle-vision dd {
    margin: 0;
    color: var(--student-lime);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
}

@keyframes home-frontier-card-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-discovery-wall {
    position: relative;
    margin-top: clamp(64px, 9vw, 132px);
    padding: clamp(22px, 3.4vw, 50px);
    border: 1px solid rgba(184, 255, 90, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 91% 8%, rgba(255, 98, 199, 0.12), transparent 24rem),
        radial-gradient(circle at 7% 22%, rgba(184, 255, 90, 0.08), transparent 22rem),
        linear-gradient(160deg, rgba(10, 21, 29, 0.96), rgba(4, 9, 15, 0.98));
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
    scroll-margin-top: 96px;
    overflow: hidden;
}

.home-discovery-wall::before {
    content: "";
    position: absolute;
    top: -86px;
    right: -60px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(103, 232, 249, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(139, 92, 246, 0.035),
        0 0 0 72px rgba(255, 98, 199, 0.025);
    pointer-events: none;
}

.home-discovery-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(151, 219, 255, 0.12);
}

.home-discovery-header .label {
    margin: 0 0 12px;
    color: var(--student-lime);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

.home-discovery-header h2 {
    max-width: 16em;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-discovery-header > div:first-child > p:not(.label) {
    max-width: 710px;
    margin: 18px 0 0;
    color: rgba(200, 217, 229, 0.67);
    line-height: 1.7;
}

.home-collection-progress {
    display: grid;
    gap: 4px;
    min-width: 230px;
    padding: 18px;
    border: 1px solid rgba(184, 255, 90, 0.26);
    border-radius: 12px;
    background: rgba(184, 255, 90, 0.06);
}

.home-collection-progress > span {
    color: rgba(222, 255, 178, 0.65);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.home-collection-progress strong {
    color: var(--student-lime);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
}

.home-collection-progress small {
    color: rgba(210, 224, 233, 0.52);
    font-size: 0.68rem;
}

.home-discovery-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
    gap: 18px;
    margin-top: 24px;
}

.home-discovery-composer,
.home-discovery-feed-panel {
    min-width: 0;
    padding: clamp(18px, 2.2vw, 28px);
    border: 1px solid rgba(151, 219, 255, 0.12);
    border-radius: 16px;
    background: rgba(2, 7, 12, 0.64);
}

.home-discovery-event-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    padding: 10px 12px;
    border: 1px dashed rgba(255, 216, 79, 0.34);
    color: var(--student-yellow);
}

.home-discovery-event-chip span {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
}

.home-discovery-event-chip strong {
    color: rgba(255, 236, 168, 0.88);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.69rem;
    text-align: right;
}

.home-discovery-composer > label {
    display: block;
    color: var(--student-lime);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.home-discovery-prompt {
    margin: 8px 0 10px;
    color: rgba(214, 229, 239, 0.62);
    font-size: 0.82rem;
}

.home-discovery-public-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    align-items: center;
    margin: 0 0 12px;
    padding: 12px;
    border: 1px solid rgba(255, 216, 79, 0.34);
    border-radius: 10px;
    background: rgba(255, 216, 79, 0.07);
}

.home-discovery-public-notice strong {
    grid-row: 1 / span 2;
    padding: 5px 7px;
    background: var(--student-yellow);
    color: #171204;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
}

.home-discovery-public-notice span {
    color: rgba(255, 240, 184, 0.84);
    font-size: 0.72rem;
    line-height: 1.5;
}

#homeDiscoveryDraft {
    width: 100%;
    min-height: 142px;
    padding: 15px;
    resize: vertical;
    border: 1px solid rgba(184, 255, 90, 0.22);
    border-radius: 11px;
    background:
        linear-gradient(145deg, rgba(184, 255, 90, 0.035), transparent 48%),
        rgba(1, 5, 9, 0.84);
    color: var(--unknown-text);
    font: inherit;
    line-height: 1.65;
}

#homeDiscoveryDraft:focus {
    outline: none;
    border-color: rgba(184, 255, 90, 0.58);
    box-shadow: 0 0 0 3px rgba(184, 255, 90, 0.07);
}

.home-discovery-draft-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    color: rgba(172, 193, 206, 0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
}

.home-discovery-actions {
    margin-top: 18px;
}

.home-discovery-actions .primary-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    background: linear-gradient(110deg, var(--student-lime), #d7ff8f 48%, var(--unknown-cyan));
}

.home-discovery-safety {
    margin: 16px 0 0;
    color: rgba(202, 218, 228, 0.7);
    font-size: 0.74rem;
    line-height: 1.65;
}

.home-discovery-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 46px;
    margin-top: 12px;
    padding: 11px 12px;
    border: 1px solid rgba(184, 255, 90, 0.18);
    border-radius: 10px;
    background: rgba(184, 255, 90, 0.045);
    color: rgba(226, 239, 216, 0.8);
    font-size: 0.76rem;
    line-height: 1.5;
    cursor: pointer;
}

.home-discovery-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--student-lime);
}

.home-discovery-consent:has(input:focus-visible) {
    outline: 2px solid var(--student-lime);
    outline-offset: 2px;
}

.home-discovery-status {
    min-height: 1.4em;
    margin: 12px 0 0;
    color: var(--student-yellow);
    font-size: 0.76rem;
    line-height: 1.5;
}

.home-discovery-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
}

.home-discovery-reward:not(:empty) {
    margin-top: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 98, 199, 0.3);
    border-radius: 10px;
    background: linear-gradient(100deg, rgba(255, 98, 199, 0.1), rgba(184, 255, 90, 0.055));
}

.home-discovery-reward span {
    color: rgba(255, 180, 226, 0.88);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.home-discovery-reward button {
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(184, 255, 90, 0.3);
    border-radius: 8px;
    background: rgba(184, 255, 90, 0.09);
    color: var(--student-lime);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
}

.home-discovery-feed-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.home-discovery-feed-head > div {
    display: grid;
    gap: 6px;
}

.home-discovery-feed-head .label {
    color: var(--student-pink);
    font-size: 0.6rem;
}

.home-discovery-feed-head > div > strong {
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.05rem;
}

#homeDiscoveryCount {
    color: rgba(255, 145, 214, 0.68);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
}

.home-discovery-feed {
    display: grid;
    gap: 9px;
    max-height: 500px;
    margin: 0;
    padding: 0 5px 0 0;
    overflow: auto;
    list-style: none;
    scrollbar-color: rgba(255, 98, 199, 0.24) transparent;
}

.home-discovery-note,
.home-discovery-empty {
    padding: 15px;
    border: 1px solid rgba(151, 219, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.022);
}

.home-discovery-note.is-mine {
    border-color: rgba(184, 255, 90, 0.24);
    background: linear-gradient(110deg, rgba(184, 255, 90, 0.05), rgba(255, 255, 255, 0.018));
}

.home-discovery-note.is-new {
    animation: home-note-found 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-discovery-note-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
}

.home-discovery-note-identity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.home-discovery-note-identity strong {
    color: var(--unknown-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
}

.home-discovery-note-identity span {
    padding: 3px 6px;
    border: 1px solid rgba(255, 98, 199, 0.24);
    color: rgba(255, 161, 219, 0.8);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.07em;
}

.home-discovery-note-identity .home-discovery-you {
    border-color: rgba(184, 255, 90, 0.28);
    color: rgba(210, 255, 151, 0.84);
}

.home-discovery-note-head time {
    color: rgba(169, 191, 207, 0.42);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
}

.home-discovery-note p,
.home-discovery-empty p {
    margin: 0;
    color: rgba(224, 235, 242, 0.82);
    font-size: 0.88rem;
    line-height: 1.68;
    white-space: pre-wrap;
}

.home-discovery-delete {
    min-height: 38px;
    margin-top: 8px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: rgba(184, 255, 90, 0.58);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.64rem;
    cursor: pointer;
}

.home-specimen-shelf {
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(151, 219, 255, 0.12);
}

.home-specimen-shelf-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.home-specimen-shelf-head .label {
    color: var(--student-yellow);
    font-size: 0.6rem;
}

.home-specimen-shelf-head p {
    max-width: 720px;
    margin: 0;
    color: rgba(169, 191, 207, 0.48);
    font-size: 0.68rem;
}

.home-specimen-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 224px);
    gap: 10px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.home-specimen-card {
    --specimen-accent: var(--unknown-cyan);
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 236px;
    padding: 15px;
    border: 1px solid color-mix(in srgb, var(--specimen-accent) 40%, transparent);
    border-radius: 14px;
    background:
        radial-gradient(circle at 74% 31%, color-mix(in srgb, var(--specimen-accent) 18%, transparent), transparent 34%),
        linear-gradient(150deg, color-mix(in srgb, var(--specimen-accent) 8%, #071018), #03070d 68%);
    color: var(--unknown-text);
    scroll-snap-align: start;
    overflow: hidden;
}

.home-specimen-card[data-variant="prism"] { --specimen-accent: var(--student-pink); }
.home-specimen-card[data-variant="echo"] { --specimen-accent: var(--unknown-cyan); }
.home-specimen-card[data-variant="horizon"] { --specimen-accent: var(--student-yellow); }
.home-specimen-card[data-variant="spark"] { --specimen-accent: var(--student-lime); }

.home-specimen-orbit {
    position: absolute;
    top: 54px;
    right: 23px;
    width: 84px;
    height: 84px;
    border: 1px solid color-mix(in srgb, var(--specimen-accent) 62%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 0 12px color-mix(in srgb, var(--specimen-accent) 5%, transparent),
        0 0 28px color-mix(in srgb, var(--specimen-accent) 17%, transparent);
}

.home-specimen-orbit::before,
.home-specimen-orbit::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--specimen-accent);
    transform: translate(-50%, -50%);
}

.home-specimen-orbit::before { width: 116px; height: 1px; transform: translate(-50%, -50%) rotate(-28deg); }
.home-specimen-orbit::after { width: 8px; height: 8px; border-radius: 50%; box-shadow: 31px -16px 0 -2px var(--specimen-accent); }

.home-specimen-card-top,
.home-specimen-card-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
}

.home-specimen-card-top span,
.home-specimen-card-bottom span {
    color: color-mix(in srgb, var(--specimen-accent) 80%, white 20%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
}

.home-specimen-card-top strong {
    max-width: 8em;
    font-family: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.08rem;
    line-height: 1.08;
}

.home-specimen-card-bottom strong {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    overflow-wrap: anywhere;
}

.home-specimen-empty {
    min-height: 118px;
    padding: 24px;
    border: 1px dashed rgba(151, 219, 255, 0.14);
    border-radius: 12px;
    color: rgba(183, 204, 217, 0.52);
    font-size: 0.8rem;
}

.home-collectible-dialog {
    width: min(530px, calc(100% - 28px));
    max-height: calc(100svh - 28px);
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(184, 255, 90, 0.34);
    border-radius: 22px;
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 98, 199, 0.16), transparent 17rem),
        linear-gradient(155deg, #0a1720, #03070c 70%);
    color: var(--unknown-text);
    box-shadow: 0 40px 130px rgba(0, 0, 0, 0.72);
    overflow: auto;
}

.home-collectible-dialog::backdrop {
    background: rgba(1, 4, 8, 0.82);
    backdrop-filter: blur(10px);
}

.home-collectible-dialog .label {
    margin: 0 0 12px;
    color: var(--student-lime);
    font-size: 0.64rem;
}

.home-collectible-dialog h2 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-collectible-dialog > p:not(.label) {
    color: rgba(207, 222, 232, 0.7);
    line-height: 1.6;
}

#homeCollectibleDialogBody {
    width: min(100%, 300px);
    margin: 22px auto;
}

#homeCollectibleDialogBody .home-specimen-card {
    min-height: 300px;
}

.home-collectible-dialog > .primary-btn {
    width: 100%;
    border-radius: 10px;
}

.home-collectible-dialog > small {
    display: block;
    margin-top: 14px;
    color: rgba(169, 191, 207, 0.48);
    font-size: 0.64rem;
    line-height: 1.5;
    text-align: center;
}

.home-collectible-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(151, 219, 255, 0.18);
    border-radius: 50%;
    background: rgba(2, 7, 12, 0.58);
    color: var(--unknown-text);
    font-size: 1.3rem;
    cursor: pointer;
}

body.home-event-page .footer {
    position: relative;
    z-index: 2;
    padding: 58px clamp(20px, 5vw, 78px) 24px;
    border-top: 1px solid rgba(151, 219, 255, 0.1);
    background: rgba(2, 5, 9, 0.86);
}

body.home-event-page .footer-inner {
    width: min(1520px, 100%);
    margin: 0 auto;
}

.home-footer-brand img {
    width: min(230px, 56vw);
    height: auto;
}

.home-footer-brand .muted {
    margin: 12px 0 0;
}

body.home-event-page .footer-links a {
    color: rgba(206, 223, 234, 0.66);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1520px, 100%);
    margin: 42px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(151, 219, 255, 0.08);
    color: rgba(154, 178, 195, 0.42);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

@keyframes home-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home-live {
    0%, 100% { opacity: 0.62; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes home-scan {
    to { background-position: 0 52px; }
}

@keyframes home-card-found {
    from { opacity: 0; transform: translateY(18px) scale(0.96) rotate(-1deg); }
    to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes home-note-found {
    from { opacity: 0; transform: translateY(10px); box-shadow: 0 0 0 rgba(184, 255, 90, 0); }
    55% { box-shadow: 0 0 0 4px rgba(184, 255, 90, 0.1); }
    to { opacity: 1; transform: translateY(0); box-shadow: 0 0 0 rgba(184, 255, 90, 0); }
}

.home-collectible-dialog[open] {
    animation: home-card-found 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 1180px) {
    body.home-event-page .nav {
        grid-template-columns: auto minmax(260px, 1fr) auto;
        gap: 12px;
    }

    body.home-event-page .nav-links {
        display: flex;
        justify-self: center;
    }

    body.home-event-page .nav-links a:not(.home-nav-guided):not(.home-nav-library) {
        display: none;
    }

    body.home-event-page .nav-links a {
        padding: 7px 10px;
        font-size: 0.62rem;
    }

    body.home-event-page .nav-links a.home-nav-library {
        padding-left: 28px;
    }

    .home-event-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.home-event-page .home-event-copy h1 {
        font-size: clamp(3.6rem, 7.5vw, 6rem);
    }

    body.home-event-page .home-event-copy h1.langJp {
        font-size: clamp(3.1rem, 6.7vw, 5.4rem);
    }

    .home-split-board {
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.7fr);
    }

    .home-physics-frontier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-physics-frontier-panel.is-researcher {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(151, 219, 255, 0.11);
        border-left: 0;
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .home-event-hero {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .home-split-board {
        grid-template-columns: 1fr;
    }

    body.home-event-page .home-questions-card {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .home-discovery-grid {
        grid-template-columns: 1fr;
    }

    .home-physics-frontier-header {
        grid-template-columns: 1fr;
    }

    .home-physics-current-context {
        width: min(100%, 520px);
    }

    .home-physics-route {
        grid-template-columns: repeat(5, minmax(148px, 1fr));
        overflow-x: auto;
    }

    .home-interpretation-card {
        grid-template-columns: 1fr;
    }

    .home-research-runway-header,
    .home-research-workspace,
    .home-review-market,
    .home-research-kaggle-vision {
        grid-template-columns: 1fr;
    }

    .home-research-case-id {
        width: min(100%, 520px);
    }

    .home-review-layer-grid {
        grid-template-columns: repeat(3, minmax(190px, 1fr));
        overflow-x: auto;
    }

    .home-physics-frontier-grid {
        grid-template-columns: 1fr;
    }

    .home-physics-frontier-panel,
    .home-physics-frontier-panel:first-child,
    .home-physics-frontier-panel.is-researcher {
        grid-column: auto;
        border-top: 1px solid rgba(151, 219, 255, 0.11);
        border-left: 0;
    }

    .home-physics-frontier-panel:first-child {
        border-top: 0;
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {
    body.home-event-page .nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        min-height: 64px;
        padding: 9px 14px;
        overflow-x: auto;
    }

    body.home-event-page .brand {
        flex: 0 0 auto;
    }

    body.home-event-page .brand-logo {
        width: 138px;
    }

    body.home-event-page .nav-actions {
        flex: 0 0 auto;
        width: auto;
        margin-left: auto;
    }

    body.home-event-page .nav-auth {
        gap: 5px;
    }

    body.home-event-page .nav-user {
        display: none;
    }

    body.home-event-page .nav .ghost-btn {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 0.62rem;
    }

    body.home-event-page #languageToggle {
        min-width: 40px;
        padding-inline: 9px;
    }

    .home-event-shell {
        width: min(100% - 28px, 1520px);
        padding-top: 0;
    }

    .home-event-hero {
        gap: 42px;
        padding: 52px 0 64px;
    }

    .home-mission-rail {
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 84vw);
        grid-template-columns: none;
        margin-bottom: 86px;
        padding-bottom: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .home-mission-rail article {
        min-height: 160px;
        scroll-snap-align: start;
    }

    .home-hero-kicker {
        margin-bottom: 38px;
    }

    .home-hero-kicker > span {
        min-height: 32px;
        padding: 0 9px;
    }

    body.home-event-page .home-event-copy h1,
    body.home-event-page .home-event-copy h1.langJp {
        font-size: clamp(3rem, 14vw, 4.45rem);
        line-height: 0.94;
    }

    body.home-event-page .home-event-copy h1.langJp {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    body.home-event-page .home-event-copy h1 br {
        display: none;
    }

    body.home-event-page .home-event-copy .lede {
        margin-top: 24px;
        font-size: 0.96rem;
    }

    .home-event-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home-event-actions a {
        width: 100%;
    }

    .home-board-intro {
        grid-template-columns: 1fr;
        gap: 18px;
        scroll-margin-top: 80px;
    }

    .home-board-intro h2 {
        font-size: clamp(2.5rem, 12vw, 4.2rem);
    }

    body.home-event-page .home-event-card,
    body.home-event-page .home-questions-card {
        padding: 15px;
        border-radius: 15px;
    }

    .home-board-head {
        flex-direction: column;
    }

    .home-current-mission {
        grid-template-columns: 1fr auto;
    }

    .home-current-mission > span {
        grid-column: 1 / -1;
    }

    body.home-event-page .home-event-stepper {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        border-radius: 13px;
    }

    body.home-event-page .home-event-nav-btn {
        min-height: 44px;
        padding-inline: 8px;
        font-size: 0.68rem;
    }

    body.home-event-page .home-event-progress {
        min-width: 52px;
        font-size: 0.7rem;
    }

    body.home-event-page .home-event-canvas {
        min-height: 0;
        aspect-ratio: 760 / 620;
    }

    .home-mobile-ask-jump {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 48px;
        margin-top: 10px;
        padding: 0 14px;
        border: 1px solid rgba(103, 232, 249, 0.28);
        border-radius: 9px;
        background: linear-gradient(105deg, rgba(103, 232, 249, 0.1), rgba(139, 92, 246, 0.09));
        color: var(--unknown-text);
        font-weight: 700;
        text-decoration: none;
    }

    body.home-event-page .home-event-metrics {
        grid-auto-flow: column;
        grid-auto-columns: minmax(150px, 62vw);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    body.home-event-page .home-event-metrics > span {
        border-top: 0;
        border-left: 1px solid rgba(151, 219, 255, 0.11);
        scroll-snap-align: start;
    }

    body.home-event-page .home-event-metrics > span:first-child {
        border-left: 0;
    }

    body.home-event-page .home-event-legend,
    body.home-event-page .home-detector-primer {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 78vw);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    body.home-event-page .home-event-legend > *,
    body.home-event-page .home-detector-primer > * {
        scroll-snap-align: start;
    }

    body.home-event-page .home-answer-mode-options {
        grid-template-columns: 1fr;
    }

    .home-ai-research-actions {
        grid-template-columns: 1fr;
    }

    .home-imagination-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(218px, 76vw);
        grid-template-columns: none;
        padding-bottom: 7px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .home-imagination-grid button {
        scroll-snap-align: start;
    }

    .home-imagination-head,
    .home-specimen-shelf-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .home-discovery-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-collision-library-bridge {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .home-collision-library-bridge > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .home-physics-frontier {
        margin-top: 76px;
        padding: 18px;
        border-radius: 18px;
    }

    .home-research-runway {
        margin-top: 76px;
        padding: 18px;
        border-radius: 18px;
    }

    .home-physics-frontier-title h2 {
        font-size: clamp(2.2rem, 11vw, 4rem);
    }

    .home-physics-route {
        grid-template-columns: 1fr;
    }

    .home-physics-route li,
    .home-physics-route li:first-child {
        min-height: 46px;
        border-top: 1px solid rgba(151, 219, 255, 0.1);
        border-left: 0;
    }

    .home-physics-route li:first-child {
        border-top: 0;
    }

    .home-physics-route li::after {
        content: "↓";
    }

    .home-physics-route li:last-child::after {
        content: "●";
    }

    .home-physics-one-clue {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
    }

    .home-physics-one-clue > a {
        grid-column: 2;
    }

    .home-interpretation-dossier {
        padding: 15px;
        border-radius: 15px;
    }

    .home-interpretation-live-evidence {
        grid-auto-flow: column;
        grid-auto-columns: minmax(150px, 62vw);
        grid-template-columns: none;
        overflow-x: auto;
    }

    .home-interpretation-live-evidence > span {
        border-top: 0;
        border-left: 1px solid rgba(151, 219, 255, 0.1);
    }

    .home-interpretation-live-evidence > span:first-child {
        border-left: 0;
    }

    .home-research-progress {
        grid-template-columns: repeat(7, minmax(150px, 72vw));
        scroll-snap-type: x mandatory;
    }

    .home-research-progress li {
        scroll-snap-align: start;
    }

    .home-research-note-grid,
    .home-research-actions,
    .home-prism-actions,
    .home-review-layer-grid {
        grid-template-columns: 1fr;
    }

    .home-prism-import-preview dl {
        grid-template-columns: 1fr;
    }

    .home-prism-import-preview dl > div,
    .home-prism-import-preview dl > div:nth-child(-n + 2) {
        border-top: 1px solid rgba(151, 219, 255, 0.08);
        border-left: 0;
    }

    .home-prism-import-preview dl > div:first-child {
        border-top: 0;
    }

    .home-review-layer-grid {
        overflow: visible;
    }

    .home-research-panel-heading,
    .home-arxiv-acknowledgement {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-arxiv-search-btn {
        width: 100%;
    }

    .home-research-kaggle-vision dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-research-kaggle-vision dl > div:nth-child(3) {
        border-top: 1px solid rgba(184, 255, 90, 0.13);
        border-left: 0;
    }

    .home-research-kaggle-vision dl > div:nth-child(4) {
        border-top: 1px solid rgba(184, 255, 90, 0.13);
    }

    .home-physics-frontier-panel.is-researcher .home-physics-card-list {
        grid-template-columns: 1fr;
    }

    .home-physics-card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-collection-progress {
        width: 100%;
        min-width: 0;
    }

    .home-discovery-wall {
        margin-top: 76px;
        padding: 18px;
        border-radius: 18px;
    }

    .home-discovery-composer,
    .home-discovery-feed-panel {
        padding: 16px;
    }

    .home-discovery-event-chip {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-discovery-event-chip strong {
        text-align: left;
    }

    body.home-event-page .home-answer-mode-option span {
        min-height: 0;
    }

    body.home-event-page .home-event-ask-actions {
        grid-template-columns: 1fr;
    }

    body.home-event-page .footer {
        padding: 44px 20px 20px;
    }

    .home-footer-meta {
        flex-direction: column;
    }
}

@media (max-width: 470px) {
    body.home-event-page .nav-auth a:nth-of-type(2) {
        display: none;
    }

    .home-hero-kicker {
        font-size: 0.58rem;
    }

    .home-hero-kicker > span {
        padding: 0 7px;
    }

    .home-board-actions {
        display: grid;
        grid-template-columns: auto 1fr;
    }
}

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

    .home-event-copy,
    .home-live-status i,
    body.home-event-page .home-event-canvas::after,
    .home-collectible-dialog[open],
    .home-discovery-note.is-new,
    .home-physics-law-card,
    .home-physics-question-card,
    .home-physics-researcher-card {
        animation: none !important;
    }

    body.home-event-page *,
    body.home-event-page *::before,
    body.home-event-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
