/* Upgrade to Pro tutorial — scoped to .tutorial-pro-root */
@scope (.tutorial-pro-root) {
  :scope {
    --bg: #262626;
    --surface: #2a2a2a;
    --border: #404040;
    --border-hi: #525252;
    --text: #f5f5f5;
    --muted: #a3a3a3;
    --accent: #60a5fa;
    --accent-dim: #2a3d6e;
    --green: #3ecf7a;
    --yellow: #f0c040;
    --orange: #fb923c;
    --teal: #2dd4bf;
    --gold: #f5c842;
    --tag-bg: #333333;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    min-height: min-content;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
  }

/* ── LAYOUT ── */
    .page-wrap {
      display: grid;
      grid-template-columns: 220px 1fr;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      gap: 0;
    }

    /* ── SIDEBAR ── */
    aside {
      padding: 40px 0 80px;
      position: sticky;
      top: 0;
      max-height: calc(100vh - 48px); align-self: start;
      overflow-y: auto;
      border-right: 1px solid var(--border);
      scrollbar-width: none;
    }
    aside::-webkit-scrollbar { display: none; }
    .sidebar-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--muted);
      padding: 0 20px 8px;
      margin-top: 24px;
    }
    .sidebar-label:first-child { margin-top: 0; }
    aside a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 20px;
      font-size: 13.5px;
      color: var(--muted);
      text-decoration: none;
      border-right: 2px solid transparent;
      transition: color 0.12s, border-color 0.12s, background 0.12s;
      margin-right: -1px;
    }
    aside a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
    aside a.active { color: var(--text); border-right-color: var(--accent); }
    .step-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--tag-bg);
      border: 1.5px solid var(--border-hi);
      font-size: 10px;
      font-family: 'DM Mono', monospace;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      flex-shrink: 0;
    }
    aside a.active .step-dot {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* ── MAIN ── */
    main {
      padding: 48px 0 80px 52px;
      max-width: 720px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 28px;
      font-family: 'DM Mono', monospace;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb span { color: var(--border-hi); }

    .tutorial-hero { margin-bottom: 48px; }
    .tag-row { display: flex; gap: 8px; margin-bottom: 16px; }
    .tag {
      font-size: 11px;
      font-family: 'DM Mono', monospace;
      padding: 3px 9px;
      border-radius: 4px;
      background: var(--tag-bg);
      border: 1px solid var(--border-hi);
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .tag.green  { color: var(--green);  border-color: rgba(62,207,122,0.25);  background: rgba(62,207,122,0.07); }
    .tag.orange { color: var(--orange); border-color: rgba(255,140,66,0.25);  background: rgba(255,140,66,0.07); }
    .tag.yellow { color: var(--yellow); border-color: rgba(240,192,64,0.25);  background: rgba(240,192,64,0.07); }
    .tag.teal { color: var(--teal); border-color: rgba(45,212,191,0.25); background: rgba(45,212,191,0.07); }
    .tag.gold { color: var(--gold); border-color: rgba(245,200,66,0.25); background: rgba(245,200,66,0.07); }

    h1 {
      font-family: 'Syne', sans-serif;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.8px;
      line-height: 1.2;
      margin-bottom: 14px;
      color: var(--text);
    }
    .hero-desc {
      font-size: 15px;
      color: #9aa0b0;
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 24px;
    }
    .meta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 12.5px;
      color: var(--muted);
      font-family: 'DM Mono', monospace;
    }

    hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

    .step-section { margin-bottom: 56px; scroll-margin-top: 80px; }
    .step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
    .step-num {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--accent);
      background: rgba(91,140,255,0.1);
      border: 1px solid rgba(91,140,255,0.25);
      border-radius: 5px;
      padding: 3px 8px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      flex-shrink: 0;
    }
    h2 {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: var(--text);
    }
    p { color: #9aa0b0; margin-bottom: 16px; font-size: 14.5px; }

    /* callouts */
    .callout {
      border-radius: 9px;
      padding: 14px 18px;
      margin: 20px 0;
      font-size: 13.5px;
      line-height: 1.6;
      display: flex;
      gap: 12px;
    }
    .callout-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
    .callout-body { color: #9aa0b0; }
    .callout-body strong { color: var(--text); font-weight: 500; }
    .callout.tip     { background: rgba(91,140,255,0.07);  border: 1px solid rgba(91,140,255,0.18); }
    .callout.note    { background: rgba(240,192,64,0.06);  border: 1px solid rgba(240,192,64,0.18); }
    .callout.success { background: rgba(62,207,122,0.06);  border: 1px solid rgba(62,207,122,0.18); }
    .callout.warn    { background: rgba(255,140,66,0.06);  border: 1px solid rgba(255,140,66,0.2); }
    .callout.gold    { background: rgba(245,200,66,0.06);  border: 1px solid rgba(245,200,66,0.2); }

    /* viewport mock */
    .viewport-mock {
      background: #0a0b0d;
      border: 1px solid var(--border-hi);
      border-radius: 10px;
      overflow: hidden;
      margin: 24px 0;
    }
    .viewport-toolbar {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .vt-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }
    .vt-pill {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 4px;
      background: var(--tag-bg);
      border: 1px solid var(--border-hi);
      color: var(--muted);
    }
    .vt-pill.on {
      color: var(--accent);
      border-color: rgba(91,140,255,0.3);
      background: rgba(91,140,255,0.1);
    }
    .viewport-body {
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* step list */
    ol.steps { list-style: none; counter-reset: step; margin: 20px 0; }
    ol.steps li {
      counter-increment: step;
      position: relative;
      margin-bottom: 14px;
      padding-left: 36px;
      font-size: 14px;
      line-height: 1.65;
      color: #9aa0b0;
    }
    ol.steps li::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0.2em;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--surface);
      border: 1.5px solid var(--border-hi);
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      color: var(--muted);
    }
    ol.steps li strong { color: var(--text); font-weight: 500; }

    code {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      color: var(--accent);
      background: rgba(91,140,255,0.08);
      border: 1px solid rgba(91,140,255,0.2);
      border-radius: 4px;
      padding: 1px 6px;
    }
    kbd {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--text);
      background: var(--surface);
      border: 1px solid var(--border-hi);
      border-bottom-width: 2px;
      border-radius: 5px;
      padding: 2px 7px;
    }

    /* map cards */
    .map-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 20px 0;
    }
    .map-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 14px;
      transition: border-color 0.15s;
    }
    .map-card:hover { border-color: var(--border-hi); }
    .map-swatch {
      width: 100%;
      height: 48px;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .map-name {
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .map-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

    /* settings table */
    .prop-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
      margin: 20px 0;
    }
    .prop-table th {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--muted);
      text-align: left;
      padding: 8px 12px;
      border-bottom: 1px solid var(--border);
    }
    .prop-table td {
      padding: 10px 12px;
      color: #9aa0b0;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }
    .prop-table tr:last-child td { border-bottom: none; }
    .prop-table tr:hover td { background: rgba(255,255,255,0.02); }
    .prop-table td:first-child {
      font-weight: 500;
      color: var(--text);
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      white-space: nowrap;
    }

    /* workflow diagram */
    .workflow {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 24px 0;
      overflow-x: auto;
      padding-bottom: 4px;
    }
    .wf-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .wf-box {
      background: var(--surface);
      border: 1px solid var(--border-hi);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 12.5px;
      color: var(--text);
      font-family: 'DM Mono', monospace;
      text-align: center;
      white-space: nowrap;
    }
    .wf-box.highlight {
      border-color: rgba(91,140,255,0.4);
      background: rgba(91,140,255,0.08);
      color: var(--accent);
    }
    .wf-label { font-size: 11px; color: var(--muted); }
    .wf-arrow {
      font-size: 16px;
      color: var(--border-hi);
      padding: 0 8px;
      flex-shrink: 0;
      margin-bottom: 20px;
    }

    /* tutorial nav */
    .tutorial-nav {
      display: flex;
      gap: 12px;
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .nav-card {
      flex: 1;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transition: border-color 0.15s;
    }
    .nav-card:hover { border-color: var(--border-hi); }
    .nav-card.next { align-items: flex-end; text-align: right; }
    .nav-card-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--muted);
    }
    .nav-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
    }

    /* Free vs Pro comparison */
    .plan-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 24px 0;
    }
    .plan-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
    }
    .plan-card.pro {
      border-color: rgba(245,200,66,0.35);
      background: linear-gradient(160deg, rgba(245,200,66,0.05) 0%, var(--surface) 60%);
      position: relative;
      overflow: hidden;
    }
    .plan-card.pro::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .plan-badge {
      font-family: "DM Mono", monospace;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 2px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 12px;
    }
    .plan-badge.free {
      background: var(--tag-bg);
      border: 1px solid var(--border-hi);
      color: var(--muted);
    }
    .plan-badge.pro {
      background: rgba(245,200,66,0.1);
      border: 1px solid rgba(245,200,66,0.3);
      color: var(--gold);
    }
    .plan-price {
      font-family: "Syne", sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .plan-price span {
      font-size: 13px;
      font-weight: 400;
      color: var(--muted);
      font-family: "DM Sans", sans-serif;
    }
    .plan-tagline {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 18px;
    }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .plan-features li {
      font-size: 13.5px;
      color: #9aa0b0;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .plan-features li .check { color: var(--green); flex-shrink: 0; font-size: 13px; }
    .plan-features li .cross { color: #ff6b6b; flex-shrink: 0; font-size: 13px; }
    .plan-features li .gold-check { color: var(--gold); flex-shrink: 0; font-size: 13px; }

    .account-panel-mock {
      background: var(--surface);
      border: 1px solid var(--border-hi);
      border-radius: 10px;
      width: 260px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
    .account-panel-header {
      padding: 14px 16px 10px;
      border-bottom: 1px solid var(--border);
    }
    .account-panel-row {
      padding: 10px 16px;
      font-size: 13px;
      color: #9aa0b0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .account-panel-row:last-child {
      border-bottom: none;
    }
    .account-panel-row.highlight {
      color: var(--gold);
      background: rgba(245, 200, 66, 0.05);
    }
    .account-panel-row.danger {
      color: #ff6b6b;
    }

    .nav-mock {
      background: var(--surface);
      border: 1px solid var(--border-hi);
      border-radius: 10px;
      overflow: hidden;
      margin: 24px 0;
    }
    .nav-mock-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 48px;
      border-bottom: 1px solid var(--border);
    }
    .nav-mock-logo {
      font-family: "Syne", sans-serif;
      font-weight: 800;
      font-size: 15px;
      color: var(--text);
    }
    .nav-mock-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-mock-btn {
      font-family: "DM Sans", sans-serif;
      font-size: 12px;
      padding: 5px 12px;
      border-radius: 6px;
      border: 1px solid var(--border-hi);
      color: #9aa0b0;
      background: var(--tag-bg);
    }
    .nav-mock-btn.primary {
      background: var(--text);
      color: var(--bg);
      border-color: transparent;
      font-weight: 600;
    }
    .nav-mock-btn.highlighted {
      background: var(--text);
      color: var(--bg);
      border-color: transparent;
      font-weight: 600;
      box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.4);
      outline: 2px solid var(--gold);
    }

    .nav-mock-callout {
      display: flex;
      justify-content: flex-end;
      padding: 10px 16px 16px;
    }
    .arrow-callout--nav-login {
      margin: 0;
      max-width: min(260px, 100%);
      justify-content: flex-end;
    }

    .arrow-callout {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: -8px 0 16px 0;
      padding: 0 8px;
    }
    .arrow-line {
      width: 32px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      position: relative;
      flex-shrink: 0;
    }
    .arrow-line::after {
      content: "";
      position: absolute;
      right: -1px;
      top: -4px;
      border: 5px solid transparent;
      border-left-color: var(--gold);
    }
    .arrow-text {
      font-family: "DM Mono", monospace;
      font-size: 10px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .step-section { animation: fadeUp 0.4s ease both; }
    .step-section:nth-child(1) { animation-delay: 0.05s; }
    .step-section:nth-child(2) { animation-delay: 0.10s; }
    .step-section:nth-child(3) { animation-delay: 0.15s; }
    .step-section:nth-child(4) { animation-delay: 0.20s; }
    .step-section:nth-child(5) { animation-delay: 0.25s; }
    .step-section:nth-child(6) { animation-delay: 0.30s; }

    /* scroll progress bar (width set from JS; scroll container is #home-panel) */
    .tutorial-pro-progress {
      position: sticky;
      top: 0;
      height: 2px;
      width: 0%;
      background: var(--gold);
      z-index: 5;
      margin: 0;
      padding: 0;
      border: none;
      border-radius: 1px;
    }

    .asset-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 20px 0;
    }
    .asset-type-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 16px 14px;
      transition: border-color 0.15s;
    }
    .asset-type-card:hover { border-color: var(--border-hi); }
    .asset-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .asset-type-name {
      font-family: "Syne", sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .asset-type-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    .scope-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: "DM Mono", monospace;
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid;
    }
    .scope-badge.session {
      color: var(--yellow);
      border-color: rgba(240, 192, 64, 0.3);
      background: rgba(240, 192, 64, 0.07);
    }
    .scope-badge.project {
      color: var(--accent);
      border-color: rgba(96, 165, 250, 0.3);
      background: rgba(96, 165, 250, 0.07);
    }
    .scope-badge.library {
      color: var(--green);
      border-color: rgba(62, 207, 122, 0.3);
      background: rgba(62, 207, 122, 0.07);
    }

    .drag-demo {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
      margin: 20px 0;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
    }
    .drag-demo-slot {
      background: var(--bg);
      border: 1.5px dashed var(--border-hi);
      border-radius: 8px;
      padding: 16px 12px;
      text-align: center;
      font-size: 12px;
      color: var(--muted);
    }
    .drag-demo-slot.filled {
      border-style: solid;
      border-color: rgba(96, 165, 250, 0.35);
      background: rgba(96, 165, 250, 0.05);
    }
    .drag-demo-slot .slot-label {
      font-family: "DM Mono", monospace;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 8px;
      color: var(--muted);
    }
    .drag-demo-arrow {
      font-size: 20px;
      color: var(--border-hi);
      text-align: center;
    }
    .drag-demo-slot .slot-name {
      font-size: 12px;
      color: var(--text);
    }

    .context-menu {
      background: var(--surface);
      border: 1px solid var(--border-hi);
      border-radius: 8px;
      overflow: hidden;
      width: 200px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    .context-menu-item {
      padding: 9px 14px;
      font-size: 13px;
      color: #9aa0b0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .context-menu-item:last-child {
      border-bottom: none;
    }
    .context-menu-item.danger {
      color: #ff6b6b;
    }
    .context-menu-item span {
      font-size: 13px;
    }
}

/*
  Plain `ol.steps li { display: flex }` from other tutorial CSS files loads after this
  sheet; if @scope is ignored or loses the cascade, those rules apply globally and
  each <strong> inside an <li> becomes a flex item (broken columns). Lock Pro lists
  to normal block flow with an explicit root prefix (higher specificity than `ol.steps li`).
*/
.tutorial-pro-root ol.steps {
  list-style: none;
  counter-reset: step;
  margin: 20px 0;
}
.tutorial-pro-root ol.steps > li {
  counter-increment: step;
  display: block;
  position: relative;
  margin-bottom: 14px;
  padding-left: 36px;
  font-size: 14px;
  line-height: 1.65;
  color: #9aa0b0;
  align-items: unset;
  justify-content: unset;
  gap: unset;
  flex-direction: unset;
  flex-wrap: unset;
}
.tutorial-pro-root ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border-hi);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--muted);
}
.tutorial-pro-root ol.steps > li strong {
  display: inline;
  color: var(--text);
  font-weight: 500;
}

/* Light theme: match body / workspace (#fcfcfc) and home marketing tokens */
body[data-theme="light"] .tutorial-pro-root {
  --bg: #fcfcfc;
  --surface: #fafafa;
  --border: #d4d4d8;
  --border-hi: #a1a1aa;
  --text: #171717;
  --muted: #525252;
  --tag-bg: #f4f4f5;
  --accent: #2563eb;
  --accent-dim: #dbeafe;
  --green: #16a34a;
  --yellow: #ca8a04;
  --orange: #ea580c;
  --gold: #b45309;
}

body[data-theme="light"] .tutorial-pro-root aside a:hover {
  background: rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .tutorial-pro-root .prop-table tr:hover td {
  background: rgba(0, 0, 0, 0.03);
}

/* Embedded in Home: menu offset is handled by #home-panel */
.home-static-page--tutorial-pro .tutorial-pro-root main {
  padding-top: 24px;
}
.home-static-page--tutorial-pro .tutorial-pro-root aside {
  padding-top: 24px;
  max-height: calc(100vh - var(--trumble-menu-bar-height, 40px) - var(--trumble-status-bar-height, 32px) - 8px);
}
