


[hidden] { display: none !important; }


.h-page {
  position: relative; 
  background: var(--bg);
  color: var(--fg);
  min-height: calc(100dvh - var(--h-nav-h, 72px));
}


.h-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
}
.h-page::after {
  content: '';
  position: absolute;
  top: 216px;    
  bottom: 180px; 
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 12% -6%,
      transparent 0, transparent 300px,
      color-mix(in srgb, var(--bg) 86%, transparent) 640px,
      color-mix(in srgb, var(--bg) 86%, transparent) 780px,
      transparent 1150px),
    repeating-radial-gradient(circle at 98% 34%,
      transparent 0, transparent 380px,
      color-mix(in srgb, var(--bg) 74%, transparent) 820px,
      transparent 1460px),
    repeating-linear-gradient(115deg,
      transparent 0, transparent 420px,
      color-mix(in srgb, var(--bg) 55%, transparent) 900px,
      transparent 1560px);
}


.h-page-inner {
  position: relative;
  z-index: 1; 
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}


.h-page-hero {
  
  padding-block: 72px 56px;
  border-bottom: 1px solid var(--border);
}

.h-page-hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.h-page-hero p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-mute);
  max-width: 640px;
  margin: 0;
}

.h-page-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 20px;
}


.h-page-section {
  
  padding-block: 56px;
  border-bottom: 1px solid var(--border);
}

.h-page-section h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
  margin: 0 0 24px;
}

.h-page-section h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 12px;
}

.h-page-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-mute);
  margin: 0 0 16px;
}

.h-page-section a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.h-page-section a.h-btn-primary { text-decoration: none; } 


.h-prose {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-mute);
}

.h-prose h1,
.h-prose h2,
.h-prose h3,
.h-prose h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--fg);
  margin: 2em 0 0.75em;
}

.h-prose h1 { font-size: 1.75rem; }
.h-prose h2 { font-size: 1.25rem; }
.h-prose h3 { font-size: 1.05rem; }

.h-prose p { margin: 0 0 1em; }

.h-prose a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h-prose ul,
.h-prose ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}

.h-prose li { margin: 0.25em 0; }

.h-prose strong { font-weight: 600; color: var(--fg); }

.h-prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-inset);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.h-prose blockquote {
  border-left: 3px solid var(--border);
  padding-left: 1em;
  color: var(--fg-faint);
  margin: 1.5em 0;
}

.h-prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}


.h-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.h-card-featured {
  background: var(--bg-raised);
  border: 2px solid var(--accent);
}


.h-page-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .h-page-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .h-page-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .h-page-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } 
  .h-page-grid.cols-5 { grid-template-columns: repeat(3, 1fr); } 
}

@media (min-width: 1080px) {
  .h-page-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .h-page-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
}


.h-plat-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}
.h-plat-live { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.h-plat-live + .h-plat-live { margin-top: 12px; }
.h-plat-icons { display: inline-flex; gap: 8px; }
.h-plat-icons .h-plat-icon { width: 34px; height: 34px; }
.h-plat-live-name { font-size: 1rem; font-weight: 500; color: var(--fg); white-space: nowrap; }
.h-plat-live .h-btn-primary { margin-left: auto; }
.h-plat-panel-div { border-top: 1px solid var(--border); margin: 20px 0; }
.h-plat-coming { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; }
.h-plat-coming-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.h-plat-coming-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--fg-mute);
  opacity: 0.8;
  white-space: nowrap;
}
.h-plat-coming-item .h-plat-coming-icon { width: 20px; height: 20px; }
.h-accent { color: var(--accent); font-weight: 500; } 


.h-page-section .h-plan-blurb {
  font-family: var(--font-body);
  color: var(--fg-mute);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0 0 14px;
  min-height: 3em;
}


@supports (grid-template-rows: subgrid) {
  @media (min-width: 768px) {
    .h-plan-grid { grid-template-rows: repeat(10, auto); }
    .h-plan-grid > .h-card {
      display: grid;
      grid-row: span 10;
      grid-template-rows: subgrid;
    }
  }
}
.h-plan-div { border-top: 1px solid var(--border); margin: 0 0 14px; }
.h-page-section .h-plan-hours-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 6px;
}

.h-page-section .h-plan-hours-big {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
  white-space: normal;
  overflow-wrap: break-word;
  margin: 0 0 6px;
}
.h-page-section .h-plan-hours-sub {
  font-size: 0.75rem;
  color: var(--fg-faint);
  margin: 0 0 14px;
  height: 1.4em;        
  white-space: nowrap;
}


.h-page-section .h-plan-feats-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 10px;
}
.h-plan-feats {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.h-plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--fg-mute);
}
.h-plan-feats li svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }



.px-grid {
  background-image:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line) 1px, transparent 1px);
  background-size: 9px 9px;
}


.h-feat-list {
  display: flex;
  flex-direction: column;
}
.h-feat-row {
  display: grid;
  gap: 28px;
  padding-block: 48px;
  border-bottom: 1px solid var(--border);
}
.h-feat-row:last-child { border-bottom: 0; }
.h-feat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 12px;
}
.h-feat-row h2 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 12px;
}
.h-feat-lead {
  max-width: 640px;
  margin: 0 0 20px;
}
.h-feat-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h-feat-points li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-mute);
  max-width: 640px;
}
.h-feat-points li::before {
  
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.h-feat-visual { margin: 0; min-width: 0; }
.h-feat-shot {
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: var(--bg-raised);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 20px;
}
.h-feat-shot-img { padding: 0; }
.h-feat-shot-img img { display: block; width: 100%; height: 340px; object-fit: cover; object-position: center 22%; }
.h-feat-shot-img.h-feat-shot-wide img { height: auto; object-fit: contain; } 
.h-feat-visual-cap {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.h-mock { position: relative; display: flex; flex-direction: column; gap: 8px; }
.h-mock-utt { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.h-mock-utt:first-child { margin-top: 0; }
.h-mock-spk { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--fg); }
.h-mock-spk.is-unknown { color: var(--fg-faint); border-bottom: 1px dotted var(--fg-faint); font-weight: 400; }
.h-mock-ts { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); margin-left: auto; }
.h-mock-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 4px; padding: 1px 6px;
}
.h-mock-line { margin: 0; font-size: 0.85rem; line-height: 1.55; color: var(--fg-mute); }
.h-mock-title { margin: 0; font-family: var(--font-mono); font-size: 1.05rem; font-weight: 500; color: var(--fg); }
.h-mock-meta { margin: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-faint); }
.h-mock-chiprow { display: flex; flex-wrap: wrap; gap: 6px; }

.h-mock-chip {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute);
  background-color: var(--bg-inset); border: 1px solid var(--border); border-radius: 999px; padding: 2px 9px;
  white-space: nowrap; flex: 0 0 auto;
}
.h-mock-chip.is-me { color: var(--accent-fg); background-color: var(--accent); border-color: var(--accent); font-weight: 600; }
.h-mock-cat {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--accent); background-color: color-mix(in srgb, var(--accent) 14%, transparent);
  border-radius: 4px; padding: 2px 8px;
}
.h-mock-action { display: flex; align-items: center; gap: 8px; }
.h-mock-check { color: var(--accent); font-weight: 700; }
.h-mock-topic { padding-right: 96px; }
.h-mock-count {
  position: absolute; top: 4px; right: 14px;
  font-family: var(--font-mono); font-size: 64px; font-weight: 700; line-height: 1;
  color: var(--fg-faint); opacity: 0.35;
}
.h-mock-center { align-items: center; justify-content: center; min-height: 260px; }
.h-feat-shot-watchimg { display: flex; align-items: center; justify-content: center; padding: 24px; }
.h-feat-shot-watchimg img { display: block; height: 320px; width: auto; } 
.h-mock-keybox {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  background-color: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.h-mock-schedrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-mute);
  background-color: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.h-mock-pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; border: 1px solid var(--border); border-radius: 999px; padding: 2px 8px; color: var(--fg-faint); }
.h-mock-pill.is-on { color: var(--accent-fg); background: var(--accent); border-color: var(--accent); font-weight: 600; }
.h-mock-search {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  background-color: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 4px;
}
.h-mock-rec { margin: 0; font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); padding-left: 10px; border-left: 2px solid var(--border); }
.h-mock-player { display: flex; align-items: center; gap: 8px; }
.h-mock-pbtn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--fg-mute);
  font-size: 10px; line-height: 1;
}
.h-mock-pbtn.is-play { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.h-mock-keyrow { display: flex; align-items: center; gap: 10px; }
.h-mock-keyrow .h-mock-keybox { flex: 1; }
.h-mock-newkey {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--accent-fg); background: var(--accent);
  border-radius: 6px; padding: 6px 10px; white-space: nowrap;
}

.h-feat-shot-term { padding: 0; background-color: #0e1216; }
.h-mock-termbar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.h-mock-dot-r, .h-mock-dot-y, .h-mock-dot-g { width: 10px; height: 10px; border-radius: 50%; }
.h-mock-dot-r { background: #ff5f57; }
.h-mock-dot-y { background: #febc2e; }
.h-mock-dot-g { background: #28c840; }
.h-mock-termname { margin-left: 6px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.45); }
.h-mock-termbody { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.h-mock-termbody p { margin: 0; font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.6; }

.h-page-section .h-mock-cmd { color: #e8eaec; }
.h-page-section .h-mock-ok { color: #7FBA13; }
.h-page-section .h-mock-mut { color: rgba(255, 255, 255, 0.55); }
.h-mock-btnrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.h-mock-btn {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute);
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px;
}
.h-mock-btn.is-accent { color: var(--accent-fg); background-color: var(--accent); border-color: var(--accent); font-weight: 600; }
.h-mock-btn.is-accent em { font-style: normal; opacity: 0.75; font-size: 11px; margin-left: 4px; }

@media (min-width: 768px) {
  .h-feat-row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    padding-block: 56px;
  }
  .h-feat-row:nth-child(even) .h-feat-visual { order: -1; } 
  .h-feat-row h2 {
    font-size: 1.5rem;
  }
  .h-feat-shot-img img { height: 400px; }
  .h-feat-shot-watchimg img { height: 360px; }
}


.h-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.h-table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  text-align: left;
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--border);
}

.h-table th:first-child { padding-left: 0; }

.h-table td {
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-mute);
  vertical-align: middle;
}

.h-table td:first-child { padding-left: 0; }


.h-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--accent-fg);   
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  text-align: center;
}

.h-btn-primary:hover { background: var(--accent-hover); }
.h-btn-primary svg { width: 16px; height: 16px; }

.h-btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s;
  text-align: center;
}

.h-btn-outline:hover { background: var(--bg-inset); }


.h-page-cta {
  padding: 80px 24px;   
  text-align: center;
}

.h-page-cta h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 24px;
}


.h-entry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.h-entry-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.h-entry-date {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}

.h-entry-title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
}


.h-entry-version {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin: 0;
}

.h-entry-title:hover { opacity: 0.75; }


.h-page-404 .h-404-code {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 13vw, 8.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  opacity: 0.6;
  margin: 0 0 4px;
}


.h-page-section .h-mission {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.6vw, 2.75rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
  max-width: 24em;
}


.h-page-section .h-about-body {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
}


.h-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .h-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .h-team-grid { grid-template-columns: repeat(6, 1fr); } }

.h-page-section a.h-team-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--fg-mute);
}
.h-team-card img {
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 4px;   
  display: block;
}
.h-team-handle { font-family: var(--font-mono); font-size: 0.8rem; }
.h-page-section a.h-team-card:hover { color: var(--fg); }
.h-page-section a.h-team-card:hover img { border-color: var(--accent); }


.h-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.h-page-section a.h-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.h-contact-item svg { width: 18px; height: 18px; flex: none; }


.h-dl-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; list-style:none; margin:0; padding:0; }
@media (max-width:720px) { .h-dl-grid { grid-template-columns:1fr; } }
.h-dl-card { display:flex; flex-direction:column; gap:8px; padding:24px; border:1px solid var(--border); border-radius:8px; background:var(--bg-raised); }
.h-dl-card[data-current="true"] { border-color:var(--accent); }
.h-dl-card.is-unavailable { opacity:.55; }

.h-page-section .h-dl-note { font-family:var(--font-body); color:var(--fg-mute); margin:0; }
.h-page-section .h-dl-meta { font-family:var(--font-mono); font-size:.8125rem; color:var(--fg-mute); display:flex; gap:12px; margin:8px 0 0; }
.h-dl-sha { font-family:var(--font-mono); font-size:.75rem; color:var(--fg-mute); }
.h-dl-sha code { word-break:break-all; }
.h-dl-status { font-family:var(--font-mono); font-size:.8125rem; color:var(--fg-mute); }
.h-dl-steps { font-family:var(--font-body); color:var(--fg-mute); line-height:1.75; }
.h-dl-staging { padding:12px 16px; text-align:center; font-family:var(--font-mono); font-size:.8125rem; }

.h-page-section .h-dl-card h2 { font-size:1.125rem; margin:0; }


.h-article-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
}
.h-article-byline-name,
.h-entry-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-mute);
  text-decoration: none;
}
a.h-article-byline-name:hover,
a.h-entry-author:hover { color: var(--fg); }


.h-entry-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
  flex: none;
}
.h-entry-avatar-empty { background: var(--border); }


.h-entry-item .h-entry-fallback {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  margin: 0;
}


.h-body-notice {
  position: relative;
  z-index: 1;
  background: var(--bg-inset);
  border-block: 1px solid var(--border);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
}


.h-entry-empty {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 10px;
}


.h-entry-empty .h-entry-empty-title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin: 0;
}

.h-entry-empty .h-entry-empty-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

.h-entry-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-mute);
  line-height: 1.6;
}


.mock-badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1px 6px;
  vertical-align: middle;
}


.h-docs-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .h-docs-layout { grid-template-columns: 200px 1fr; }
}

.h-docs-sidebar {
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.h-docs-sidebar-section { margin-bottom: 24px; }

.h-docs-sidebar-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin: 0 0 8px;
}

.h-docs-sidebar a {
  display: block;
  color: var(--fg-mute);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.1s;
}

.h-docs-sidebar a:hover,
.h-docs-sidebar a[aria-current] { color: var(--fg); }


.h-page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--h-nav-h, 72px));
  text-align: center;
  padding: 48px 24px;
}




* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }


.h-section-inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; width: 100%; }


.h-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.h-btn svg { width: 16px; height: 16px; display: block; }
.h-btn.h-btn-primary {               
  display: inline-flex;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--accent-fg);
}
.h-btn.h-btn-primary:hover { background: var(--accent-hover); }


:root { --h-nav-h: 60px; }
.h-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--h-nav-h);
  background: var(--bg);                                    
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.h-nav.is-scrolled {
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.h-nav-inner {
  max-width: 1120px; height: 100%;
  margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.h-nav-left { display: flex; align-items: center; gap: 32px; min-width: 0; }
.h-nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.h-nav-logo { height: 24px; width: auto; display: block; }

.h-nav-logo-light { display: none; }
:root[data-theme="light"] .h-nav-logo-dark { display: none; }
:root[data-theme="light"] .h-nav-logo-light { display: block; }
.h-nav-links { display: none; }                              
.h-nav-links a { color: var(--fg-mute); transition: color 0.15s ease; }
.h-nav-links a:hover { color: var(--fg); }
.h-nav-cta { display: flex; align-items: center; gap: 12px; }


.h-nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0 8px 4px;
  color: var(--fg-mute);
  transition: color 0.2s ease;
}
.h-nav-burger:hover { color: var(--fg); }
.h-nav-burger .lucide { width: 18px; height: 18px; }
.h-nav-burger .h-nav-burger-close { display: none; }
.h-nav.is-menu-open .h-nav-burger .h-nav-burger-open { display: none; }
.h-nav.is-menu-open .h-nav-burger .h-nav-burger-close { display: block; }
.h-nav.is-menu-open .h-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: calc(100% + 8px);
  left: 12px;
  right: 12px;
  z-index: 60;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 6px;
  font-size: 15px;
}
.h-nav.is-menu-open .h-nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 4px;
}
.h-nav.is-menu-open .h-nav-links a:hover { background: var(--bg-inset); color: var(--fg); }


.h-nav-lang { position: relative; display: block; }   
.h-nav-lang-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: 0; cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  color: var(--fg-mute);
  transition: color 0.15s ease;
}
.h-nav-lang-trigger:hover { color: var(--fg); }
.h-nav-lang-chevron { width: 14px; height: 14px; transition: transform 0.15s ease; }
.h-nav-lang.is-open .h-nav-lang-chevron { transform: rotate(180deg); }
.h-nav-lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  min-width: 132px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 6px;
  display: flex; flex-direction: column; gap: 2px;
  max-height: calc(100vh - 120px);   
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}
.h-nav-lang.is-open .h-nav-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.h-nav-lang-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--fg-mute);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.h-nav-lang-item:hover { background: var(--bg-inset); color: var(--fg); }
.h-nav-lang-item.is-on { color: var(--fg); font-weight: var(--fw-medium); }
.h-nav-lang-item.is-on::after {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-left: 16px;
}


.h-foot {
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.h-foot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
.h-foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.h-foot-soon-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;               
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.h-foot-soon-item { color: var(--fg-faint); cursor: default; }
.h-foot-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}
.h-foot-col a {
  color: var(--fg-mute);
  transition: color 0.15s ease;
  
  padding-block: 5px;
  margin-block: -5px;
  align-self: flex-start;
}
.h-foot-col a:hover { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.h-foot-col a.is-coming { color: var(--fg-faint); }
.h-foot-tag-soon {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
}
.h-foot-social { display: flex; gap: 10px; margin-top: 2px; }
.h-foot-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: var(--fg-mute);
  transition: background 0.15s ease, color 0.15s ease;
}
.h-foot-social a:hover { background: var(--bg-raised); color: var(--fg); }
.h-foot-social svg { width: 18px; height: 18px; }
.h-foot-bottom {
  max-width: 1120px; margin: 40px auto 0; padding: 20px 20px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--fg-faint);
}
.h-foot-bottom-meta { display: flex; gap: 20px; }
.h-foot-bottom-meta a:hover { color: var(--fg); }


@media (min-width: 768px) {
  :root { --h-nav-h: 72px; }
  body { font-size: 16px; }
  .h-nav-logo { height: 28px; }
  .h-nav-links { display: flex; gap: 28px; font-size: 14px; }
  .h-nav-burger { display: none; }                          
  .h-foot-grid { grid-template-columns: repeat(4, 1fr); }
  .h-foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
}


@media (min-width: 1080px) {
  .h-foot-grid { grid-template-columns: repeat(5, 1fr); }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


.h-nav-links a.h-nav-download,
.h-nav-links a[data-ph="nav_download"] {
  color: var(--accent);
  font-weight: 500;
  text-shadow:
    0 1px 0 var(--accent-fg),
    0 -1px 0 var(--accent-fg),
    1px 0 0 var(--accent-fg),
    -1px 0 0 var(--accent-fg);
}
.h-nav-links a[data-ph="nav_download"]:hover { color: var(--accent-hover); }


.h-cta-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px 104px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.h-cta-bottom-title {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 14px;
}
.h-cta-bottom-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--fg-mute);
  margin: 0 0 28px;
}
.h-cta-bottom .h-cta-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 14px 28px;
}

.h-cta-bottom-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.h-cta-bottom-soon {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  margin: 22px 0 0;
}


.h-foot-bottom .h-foot-brand { color: var(--accent); font-weight: 500; }
.h-foot-madeby a { color: var(--accent); font-weight: 500; text-decoration: none; }
.h-foot-madeby a:hover { color: var(--accent-hover); }
