.jsi-doc-section {
    display: none;
}

.jsi-splat-embed {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 70vh;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
}

.jsi-splat-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.tutorial-nav {
  background: #f5f5f7;
  border: 1px solid #d8d8de;
  border-radius: 14px;
  padding: 14px;
}

.tutorial-nav__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
}

.tutorial-nav__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tutorial-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.tutorial-nav .nav-link:hover {
  background: rgba(72, 207, 203, 0.12);
  color: rgb(72, 207, 203);
}

.tutorial-nav .nav-link.active,
.tutorial-nav .nav-link.is-active {
  background: rgba(72, 207, 203, 0.18);
  color: rgb(72, 207, 203);
}

.tutorial-nav .step-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  background: #e5e7eb;
  color: #9ca3af;
}

.tutorial-nav .nav-link.active .step-number,
.tutorial-nav .nav-link.is-active .step-number {
  background: rgb(72, 207, 203);
  color: #fff;
}

.callout-tip {
    background-color: rgba(72, 207, 203, 0.18);
    border: 1px solid rgb(72, 207, 203);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 1rem 0;

    color: black;
    font-family: inherit;
    line-height: 1.5;
}

.callout-tip h1, .callout-tip h2,.callout-tip h3,.callout-tip h4,.callout-tip h5,.callout-tip h6 {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(72, 207, 203);
    margin-bottom: 0.5rem;
}

.callout-tip p {
    margin: 0;
    font-size: 1rem;
}

.jsi-checklist {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 24px;
}

.jsi-checklist h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.jsi-checklist p {
    margin: 0 0 18px;
    color: #4b5563;
}

.jsi-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.jsi-checklist li {
    position: relative;
    padding: 14px 16px 14px 52px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    line-height: 1.5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.jsi-checklist li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px solid rgb(72, 207, 203);
    background: rgba(72, 207, 203, 0.12);
}

.jsi-checklist li::after {
    content: "✓";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-52%);
    font-size: 13px;
    font-weight: 700;
    color: rgb(72, 207, 203);
}