/* ========================================
   UX Sticky Header Dynamic
   ======================================== */
.ux-sticky-header {
  position: relative;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.ux-sticky-header.ux-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.ux-sticky-header.ux-header-hidden {
  transform: translateY(-100%);
}
.ux-sticky-header.ux-header-scrolled {
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero-viewport {
  position: relative;
  background-color: #121212;
  /* Tinggi ini akan menentukan total durasi scroll */
  background: radial-gradient(circle at center, #1e293b 0%, #121212 70%, #0a0a0a 100%);
}

/* 2. Responsive Sticky Scene */
.sticky-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 20px; /* Padding aman buat mobile */
}

.content-reveal {
  grid-area: 1/1;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.item-card-stack {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  will-change: transform, opacity;
}

.text-layer {
  grid-area: 1/1;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center; /* Anchor utama di tengah */
  gap: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}

/* Part Kiri: Naik ke atas */
.part-left {
  align-self: flex-start;
  margin-bottom: 10vh; /* Atur seberapa tinggi naiknya */
}

.part-left img {
  height: clamp(120px, 25vw, 220px); /* Lebih masif */
  width: auto;
}

/* Part Kanan: Turun ke bawah */
.part-right {
  align-self: flex-end;
  margin-top: 10vh; /* Atur seberapa jauh turunnya */
}

.part-right img {
  height: clamp(120px, 25vw, 220px); /* Lebih masif */
  width: auto;
  max-width: 100%;
}

.text-layer img {
  /* Gambar akan mengikuti ukuran container-nya */
  height: clamp(60px, 15vw, 120px);
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

/* 4. Fix for small screens (Landscape / iPhone SE) */
@media (max-height: 600px) {
  .item-card-stack .display-1 {
    margin-bottom: 1rem !important;
  }
  .item-card-stack p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; /* Potong teks kalau layar terlalu pendek */
  }
}
article.post pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.6;
  border: 1px solid #333;
  font-family: "Fira Code", "Courier New", monospace;
}
article.post pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
  font-size: 0.775rem;
  white-space: pre;
  border: none;
}
article.post pre::-webkit-scrollbar {
  height: 6px;
}
article.post pre::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}
article.post pre::-webkit-scrollbar-thumb:hover {
  background: #555;
}
article.post pre::-webkit-scrollbar-track {
  background: #1e1e1e;
}
article.post p > code, article.post li > code {
  background-color: #2d2d2d;
  color: #feece9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.5em;
}

.post-content iframe {
  width: 100% !important;
  aspect-ratio: 16/9;
  height: auto !important;
  border: 0;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .post-content iframe {
    aspect-ratio: 16/9;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.biopage {
  background: #0c0c0e;
  color: #e8e8ec;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 80px;
  --bg: #0c0c0e;
  --surface: #141416;
  --border: #222226;
  --border-hover: #3a3a40;
  --text: #e8e8ec;
  --muted: #919191;
  --radius: 12px;
  --radius-sm: 8px;
}
body.biopage .site-nav {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
body.biopage .site-nav .logo {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #919191;
  letter-spacing: 0.04em;
  text-decoration: none;
}
body.biopage .site-nav .logo span {
  color: #e8e8ec;
}
body.biopage .site-nav .back-link {
  font-size: 12px;
  color: #919191;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
body.biopage .site-nav .back-link:hover {
  color: #e8e8ec;
}
body.biopage .card {
  width: 100%;
  max-width: 480px;
}
body.biopage .profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 14px;
  animation: fadeUp 0.5s ease both;
}
body.biopage .profile .avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}
body.biopage .profile .avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #141416;
  border: 1px solid #222226;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  color: #919191;
}
body.biopage .profile .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #222226;
  display: block;
}
body.biopage .profile .online-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: #4caf76;
  border-radius: 50%;
  border: 2px solid #0c0c0e;
}
body.biopage .profile .profile-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
body.biopage .profile .profile-handle {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #919191;
  margin-top: -8px;
}
body.biopage .profile .profile-bio {
  font-size: 14px;
  color: #919191;
  max-width: 340px;
  line-height: 1.75;
}
body.biopage .profile .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
body.biopage .profile .tag {
  background: #1c1c20;
  color: #9090a0;
  border: 1px solid #222226;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.02em;
}
body.biopage .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s ease 0.1s both;
}
body.biopage .stats-row .stat-box {
  background: #141416;
  border: 1px solid #222226;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
body.biopage .stats-row .stat-num {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.biopage .stats-row .stat-label {
  font-size: 11px;
  color: #919191;
  font-family: "DM Mono", monospace;
}
body.biopage .section-label {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #919191;
  margin-bottom: 12px;
  padding-left: 2px;
}
body.biopage .link-group {
  margin-bottom: 32px;
}
body.biopage .link-group:nth-child(3) {
  animation: fadeUp 0.5s ease 0.15s both;
}
body.biopage .link-group:nth-child(4) {
  animation: fadeUp 0.5s ease 0.2s both;
}
body.biopage .link-group:nth-child(5) {
  animation: fadeUp 0.5s ease 0.25s both;
}
body.biopage .link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #141416;
  border: 1px solid #222226;
  border-radius: 12px;
  text-decoration: none;
  color: #e8e8ec;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  margin-bottom: 8px;
}
body.biopage .link-item:last-child {
  margin-bottom: 0;
}
body.biopage .link-item:hover {
  border-color: #3a3a40;
  background: #18181c;
  transform: translateY(-1px);
}
body.biopage .link-item:hover .link-arrow {
  transform: translateX(3px);
  color: #e8e8ec;
}
body.biopage .link-item .link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e1e22;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.biopage .link-item .link-icon svg {
  width: 16px;
  height: 16px;
}
body.biopage .link-item .link-text {
  flex: 1;
}
body.biopage .link-item .link-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #e8e8ec;
  line-height: 1.3;
}
body.biopage .link-item .link-text span {
  font-size: 12px;
  color: #919191;
}
body.biopage .link-item .link-arrow {
  color: #919191;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
body.biopage hr.divider {
  border: none;
  border-top: 1px solid #222226;
  margin: 0 0 32px;
  animation: fadeUp 0.5s ease 0.3s both;
}
body.biopage .bio-footer {
  text-align: center;
  animation: fadeUp 0.5s ease 0.35s both;
}
body.biopage .bio-footer a {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #919191;
  text-decoration: none;
  transition: color 0.2s;
}
body.biopage .bio-footer a:hover {
  color: #e8e8ec;
}
body.biopage .bio-footer p {
  font-size: 11px;
  color: #3a3a3f;
  margin-top: 8px;
  font-family: "DM Mono", monospace;
}

/*# sourceMappingURL=luftinur.css.map */
