    .page {
      --globe-panel-height: 144px;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 clamp(10px, 2.2vw, 24px) 28px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    header {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 18px 22px;
      width: 100%;
      border-radius: 20px;
      background: rgba(192, 232, 207, 0.88);
      border: 1px solid rgba(11, 17, 18, 0.12);
      box-shadow: 0 18px 36px rgba(11, 17, 18, 0.18);
      position: relative;
      margin-bottom: 16px;
    }

    .header-left {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .hero-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .title-block h1 {
      margin: 0;
      font-family: "Trebuchet MS", "Segoe UI", "Verdana", sans-serif;
      font-size: clamp(26px, 4vw, 38px);
    }

    .title-block p {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .eyeball-slot {
      display: grid;
      place-items: center;
      width: 88px;
      height: 88px;
      border-radius: 20px;
      background: rgba(11, 17, 18, 0.1);
      border: 1px solid rgba(11, 17, 18, 0.12);
    }

    .graph-wrap {
      width: 100%;
      height: var(--globe-panel-height);
      border-radius: 18px;
      background: rgba(11, 17, 18, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
      position: relative;
    }

    #graph {
      width: 100%;
      height: 100%;
      display: block;
      cursor: grab;
      touch-action: none;
      user-select: none;
      -webkit-user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    #graph.is-dragging {
      cursor: grabbing;
    }

    .layout {
      display: grid;
      grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 2fr);
      gap: 20px;
      min-height: 70vh;
      align-items: start;
    }

    .panel {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 16px 36px rgba(11, 17, 18, 0.14);
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-content: start;
      height: 100%;
    }

    .panel.record-panel {
      height: auto;
    }

    .panel.records-panel {
      margin-top: 8px;
      height: calc(var(--globe-panel-height) * 2);
    }
    .info-panel {
      max-width: 900px;
      margin: 0 auto;
    }

    .info-panel summary {
      cursor: pointer;
      font-family: "Trebuchet MS", "Segoe UI", "Verdana", sans-serif;
      font-size: 18px;
      color: var(--title);
      list-style: none;
    }

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

    .info-panel summary::after {
      content: "▾";
      margin-left: 8px;
      font-size: 16px;
      color: var(--accent);
    }

    .info-panel[open] summary::after {
      content: "▴";
    }

    .controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .pill {
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--panel-2);
      color: var(--ink);
      font-size: 14px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .pill:hover {
      transform: translateY(-1px);
      border-color: var(--accent);
      box-shadow: 0 0 12px var(--glow);
    }

    .toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--panel-2);
      font-size: 14px;
      color: var(--ink);
    }

    .toggle input {
      accent-color: var(--accent);
    }

    .search {
      width: 100%;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(11, 17, 18, 0.2);
      background: rgba(255, 255, 255, 0.85);
      font-family: inherit;
      font-size: 14px;
    }

    .search-meta {
      font-size: 12px;
      color: var(--muted);
    }

    .list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 6px;
      overflow: auto;
      align-content: start;
      flex: 1;
      min-height: 0;
      max-height: 420px;
    }

    .list button {
      width: 100%;
      text-align: left;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid transparent;
      background: var(--panel-2);
      color: var(--ink);
      font-family: inherit;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .list button:hover {
      border-color: rgba(124, 199, 255, 0.4);
    }

    .list button.active {
      border-color: var(--accent);
      background: rgba(15, 139, 141, 0.12);
      box-shadow: inset 0 0 0 1px rgba(15, 139, 141, 0.2);
    }

    .record {
      --record-panel-height: clamp(540px, calc((100vh - 320px) * 1.5 + 180px), 1020px);
      --record-panel-height: clamp(540px, calc((100dvh - 320px) * 1.5 + 180px), 1020px);
      --record-media-max-height: calc(var(--record-panel-height) * 0.75);
      display: grid;
      gap: 14px;
      min-height: 0;
      height: var(--record-panel-height);
      overflow: hidden;
      position: relative;
    }

    .record-frame {
      display: grid;
      gap: 14px;
      min-height: 0;
      height: 100%;
      max-height: 100%;
      overflow: auto;
      padding-right: 6px;
      scrollbar-gutter: stable;
      will-change: transform, opacity;
    }

    .record-main {
      display: grid;
      gap: 14px;
      min-width: 0;
      align-items: start;
    }

    .record-main-text {
      display: grid;
      gap: 14px;
      min-width: 0;
    }

    .record-main.record-main-split {
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 14px;
    }

    .record-main.record-main-split.record-main-split-iframe {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .record-main.record-main-split.record-main-split-iframe > iframe.record-lead-media.record-html-embed {
      width: 100%;
      max-width: 100%;
    }

    .record-main.record-main-split > .record-lead-media {
      margin: 0;
      width: auto;
    }

    .page[data-record-view="profile-mobile"] .record-main.record-main-split,
    .page[data-record-view="profile-mobile"] .record-main.record-main-split.record-main-split-iframe {
      grid-template-columns: minmax(0, 1fr);
    }

    .page[data-record-view="profile-mobile"] .record-main.record-main-split > .record-lead-media {
      width: 100%;
      max-width: 100%;
    }

    .record h2,
    .record h3,
    .record h4 {
      margin: 0;
      font-family: "Trebuchet MS", "Segoe UI", "Verdana", sans-serif;
    }

    .record h2 {
      color: var(--title);
      font-size: 22px;
    }

    .record h3 {
      color: var(--accent);
      font-size: 16px;
    }

    .record h4 {
      font-size: 14px;
    }

    .record p,
    .record li,
    .record blockquote {
      margin: 0;
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink);
    }

    .record ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 6px;
    }

    .record blockquote {
      border-left: 3px solid var(--accent);
      padding-left: 12px;
      color: var(--muted);
    }

    .record-ew {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--muted);
      font-family: "Courier New", monospace;
      padding: 2px 0;
    }
    .record-ew-conf-bar-bg {
      width: 52px;
      height: 3px;
      border-radius: 2px;
      background: var(--line);
      overflow: hidden;
      display: inline-block;
      vertical-align: middle;
    }
    .record-ew-conf-bar-fill {
      height: 100%;
      border-radius: 2px;
      background: var(--accent);
      opacity: 0.8;
    }

    .record img,
    .record video,
    .record object,
    .record iframe.record-html-embed {
      display: block;
      clear: both;
      float: none;
      max-width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(11, 17, 18, 0.12);
      background: rgba(255, 255, 255, 0.9);
      margin: 0 0 12px;
    }

    .record img {
      width: auto;
      height: auto;
      max-height: var(--record-media-max-height);
      object-fit: contain;
    }

    .record video {
      width: auto;
      height: auto;
      max-height: var(--record-media-max-height);
      object-fit: contain;
    }

    .record object {
      width: 100%;
      min-height: 180px;
    }

    .record iframe.record-html-embed {
      width: 100%;
      max-width: 100%;
      height: var(--record-media-max-height);
      max-height: var(--record-media-max-height);
      border: 1px solid rgba(11, 17, 18, 0.2);
    }

    .record .katex-display {
      margin: 0.6em 0;
      overflow-x: auto;
      overflow-y: hidden;
    }

    .related {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 6px;
    }

    .related li {
      display: flex;
      gap: 8px;
      align-items: baseline;
      font-size: 14px;
    }

    .muted {
      color: var(--muted);
      font-size: 13px;
    }

    .tour-note {
      font-size: 13px;
      color: var(--muted);
    }

    .scene-controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(15, 139, 141, 0.28);
      background: rgba(15, 139, 141, 0.08);
    }

    .scene-controls button {
      border-radius: 999px;
      border: 1px solid rgba(11, 17, 18, 0.22);
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      font-family: inherit;
      font-size: 13px;
      font-weight: 700;
      padding: 7px 12px;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .scene-controls button:hover:enabled {
      transform: translateY(-1px);
      border-color: var(--accent);
      box-shadow: 0 0 10px rgba(15, 139, 141, 0.2);
    }

    .scene-controls button:disabled {
      cursor: default;
      opacity: 0.45;
      box-shadow: none;
    }

    .scene-status {
      font-size: 12px;
      color: var(--muted);
    }

    footer {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      color: rgba(230, 255, 240, 0.7);
      padding: 24px 0 8px;
    }

    @media (max-width: 900px) {
      header {
        grid-template-columns: 1fr;
      }

      .layout {
        grid-template-columns: 1fr;
      }

      .page {
        --globe-panel-height: 154px;
      }

      .record {
        --record-panel-height: clamp(480px, calc((100vh - 280px) * 1.5 + 150px), 840px);
        --record-panel-height: clamp(480px, calc((100dvh - 280px) * 1.5 + 150px), 840px);
        height: var(--record-panel-height);
      }
    }
